diff --git a/skyvern/forge/forge_app_initializer.py b/skyvern/forge/forge_app_initializer.py index 52c59f4b..22a5af7c 100644 --- a/skyvern/forge/forge_app_initializer.py +++ b/skyvern/forge/forge_app_initializer.py @@ -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, ) diff --git a/skyvern/forge/sdk/routes/streaming/messages.py b/skyvern/forge/sdk/routes/streaming/messages.py index 0059fb82..03ffc7f4 100644 --- a/skyvern/forge/sdk/routes/streaming/messages.py +++ b/skyvern/forge/sdk/routes/streaming/messages.py @@ -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, diff --git a/skyvern/forge/sdk/routes/streaming/vnc.py b/skyvern/forge/sdk/routes/streaming/vnc.py index 97124b30..9e81efff 100644 --- a/skyvern/forge/sdk/routes/streaming/vnc.py +++ b/skyvern/forge/sdk/routes/streaming/vnc.py @@ -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,