diff --git a/skyvern/forge/sdk/routes/streaming/messages.py b/skyvern/forge/sdk/routes/streaming/messages.py index 7b145749..74b5295d 100644 --- a/skyvern/forge/sdk/routes/streaming/messages.py +++ b/skyvern/forge/sdk/routes/streaming/messages.py @@ -69,7 +69,7 @@ async def messages( organization_id = await auth(apikey=apikey, token=token, websocket=websocket) if not organization_id: - LOG.error( + LOG.warning( "Authentication failed.", browser_session_id=browser_session_id, workflow_run_id=workflow_run_id, diff --git a/skyvern/forge/sdk/routes/streaming/vnc.py b/skyvern/forge/sdk/routes/streaming/vnc.py index a90153e2..6bf076d7 100644 --- a/skyvern/forge/sdk/routes/streaming/vnc.py +++ b/skyvern/forge/sdk/routes/streaming/vnc.py @@ -89,7 +89,7 @@ async def stream( organization_id = await auth(apikey=apikey, token=token, websocket=websocket) if not organization_id: - LOG.error("Authentication failed.", task_id=task_id, workflow_run_id=workflow_run_id) + LOG.warning("Authentication failed.", task_id=task_id, workflow_run_id=workflow_run_id) return vnc_channel: VncChannel