hotfix: model fetcher warning instead of exception when fetching fail

This commit is contained in:
DevTekVE
2025-09-05 14:42:08 +02:00
committed by GitHub
parent 29fe152bd3
commit 7d4df73ea5

View File

@@ -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}")