From e9859f9c55cf02c91baa05b41dcb09cde7e73206 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 20 Mar 2026 17:33:27 -0600 Subject: [PATCH] Cleanup --- frigate/api/chat.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frigate/api/chat.py b/frigate/api/chat.py index 49488b133c..136c425f25 100644 --- a/frigate/api/chat.py +++ b/frigate/api/chat.py @@ -690,7 +690,8 @@ async def _execute_start_camera_watch( zones=zones, ) except RuntimeError as e: - return {"error": str(e)} + logger.error("Failed to start VLM watch job: %s", e, exc_info=True) + return {"error": "Failed to start VLM watch job."} return { "success": True, @@ -1178,8 +1179,9 @@ async def start_vlm_monitor( zones=body.zones, ) except RuntimeError as e: + logger.error("Failed to start VLM watch job: %s", e, exc_info=True) return JSONResponse( - content={"success": False, "message": str(e)}, + content={"success": False, "message": "Failed to start VLM watch job."}, status_code=409, )