Skip to content

Commit be0edb9

Browse files
committed
chore(dashboard): remove unnecessary logs
1 parent 72aaee1 commit be0edb9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

nebula/frontend/app.py

-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ async def get_notes_for_scenario(scenario_name: str):
287287
@app.get("/nebula/dashboard/{scenario_name}/config")
288288
async def get_config_for_scenario(scenario_name: str):
289289
json_path = os.path.join(os.environ.get("NEBULA_CONFIG_DIR"), scenario_name, "scenario.json")
290-
logging.info(f"[FER] json_path: {json_path}")
291290

292291
try:
293292
with open(json_path) as file:

nebula/frontend/templates/dashboard.html

-2
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,6 @@ <h3>Scenarios in the database</h3>
288288
const response = await fetch(`/nebula/dashboard/${scenarioName}/config`);
289289
const data = await response.json();
290290

291-
console.log("[FER] ", data.config)
292-
293291
if (data.status === 'success') {
294292
configTextElement.value = JSON.stringify(data.config, null, 2);
295293
} else {

0 commit comments

Comments
 (0)