downgrade noisy logs to debug (#4378)

This commit is contained in:
Shuchang Zheng
2026-01-01 21:15:29 -08:00
committed by GitHub
parent 974d7469be
commit 338fa9e1c8
3 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ def start_forge_app() -> ForgeApp:
raise RuntimeError(f"Missing configure_app function in {module}")
configure_app_fn(force_app_instance)
LOG.info(
LOG.debug(
"Additional modules loaded to set up api app",
modules=settings.ADDITIONAL_MODULES,
)

View File

@@ -106,7 +106,7 @@ async def messages(
return
if not result:
LOG.warning(
LOG.debug(
"No message channel found.",
browser_session_id=browser_session_id,
workflow_run_id=workflow_run_id,

View File

@@ -78,7 +78,7 @@ async def stream(
)
return
LOG.info(
LOG.debug(
"Starting vnc stream.",
browser_session_id=browser_session_id,
client_id=client_id,
@@ -104,7 +104,7 @@ async def stream(
)
if not result:
LOG.warning(
LOG.debug(
"No vnc context found for the browser session.",
browser_session_id=browser_session_id,
organization_id=organization_id,
@@ -122,7 +122,7 @@ async def stream(
)
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)
return
@@ -140,7 +140,7 @@ async def stream(
)
if not result:
LOG.warning(
LOG.debug(
"No vnc context found for the workflow run.",
workflow_run_id=workflow_run_id,
organization_id=organization_id,