downgrade noisy logs to debug (#4378)
This commit is contained in:
@@ -20,7 +20,7 @@ def start_forge_app() -> ForgeApp:
|
|||||||
raise RuntimeError(f"Missing configure_app function in {module}")
|
raise RuntimeError(f"Missing configure_app function in {module}")
|
||||||
|
|
||||||
configure_app_fn(force_app_instance)
|
configure_app_fn(force_app_instance)
|
||||||
LOG.info(
|
LOG.debug(
|
||||||
"Additional modules loaded to set up api app",
|
"Additional modules loaded to set up api app",
|
||||||
modules=settings.ADDITIONAL_MODULES,
|
modules=settings.ADDITIONAL_MODULES,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ async def messages(
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.warning(
|
LOG.debug(
|
||||||
"No message channel found.",
|
"No message channel found.",
|
||||||
browser_session_id=browser_session_id,
|
browser_session_id=browser_session_id,
|
||||||
workflow_run_id=workflow_run_id,
|
workflow_run_id=workflow_run_id,
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
LOG.info(
|
LOG.debug(
|
||||||
"Starting vnc stream.",
|
"Starting vnc stream.",
|
||||||
browser_session_id=browser_session_id,
|
browser_session_id=browser_session_id,
|
||||||
client_id=client_id,
|
client_id=client_id,
|
||||||
@@ -104,7 +104,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.warning(
|
LOG.debug(
|
||||||
"No vnc context found for the browser session.",
|
"No vnc context found for the browser session.",
|
||||||
browser_session_id=browser_session_id,
|
browser_session_id=browser_session_id,
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
@@ -122,7 +122,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.warning("No vnc context found for the task.", task_id=task_id, organization_id=organization_id)
|
LOG.debug("No vnc context found for the task.", task_id=task_id, organization_id=organization_id)
|
||||||
await websocket.close(code=1013)
|
await websocket.close(code=1013)
|
||||||
return
|
return
|
||||||
|
|
||||||
@@ -140,7 +140,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.warning(
|
LOG.debug(
|
||||||
"No vnc context found for the workflow run.",
|
"No vnc context found for the workflow run.",
|
||||||
workflow_run_id=workflow_run_id,
|
workflow_run_id=workflow_run_id,
|
||||||
organization_id=organization_id,
|
organization_id=organization_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user