From 7d4df73ea5bb0557a0c50b681fdf60ea3e7b306e Mon Sep 17 00:00:00 2001 From: DevTekVE Date: Fri, 5 Sep 2025 14:42:08 +0200 Subject: [PATCH] hotfix: model fetcher warning instead of exception when fetching fail --- sunnypilot/models/fetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunnypilot/models/fetcher.py b/sunnypilot/models/fetcher.py index e681d150b..3be6e0b46 100644 --- a/sunnypilot/models/fetcher.py +++ b/sunnypilot/models/fetcher.py @@ -148,7 +148,7 @@ class ModelFetcher: except SSLError as e: cloudlog.warning(f"SSL error while fetching models: {e}") except RequestException as e: - cloudlog.exception(f"Request transport error while fetching models: {e}") + cloudlog.warning(f"Request transport error while fetching models: {e}") except Exception as e: cloudlog.exception(f"Unexpected error fetching models: {e}")