downgrade some log lines (#4112)
This commit is contained in:
@@ -112,7 +112,7 @@ async def messages(
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.error(
|
LOG.warning(
|
||||||
"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,
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.error(
|
LOG.warning(
|
||||||
"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,
|
||||||
@@ -128,7 +128,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.error("No vnc context found for the task.", task_id=task_id, organization_id=organization_id)
|
LOG.warning("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
|
||||||
|
|
||||||
@@ -146,7 +146,7 @@ async def stream(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if not result:
|
if not result:
|
||||||
LOG.error(
|
LOG.warning(
|
||||||
"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