From 348fe05f7f3407389304faa00aff781bae515dba Mon Sep 17 00:00:00 2001 From: OpenSquared Date: Thu, 23 Jul 2026 17:30:49 +0200 Subject: [PATCH] feat: saxo price --- backend/routers/instruments_watchlist.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/routers/instruments_watchlist.py b/backend/routers/instruments_watchlist.py index ca92c2d..8476f15 100644 --- a/backend/routers/instruments_watchlist.py +++ b/backend/routers/instruments_watchlist.py @@ -38,7 +38,9 @@ def _saxo_quote(saxo_symbol: str) -> Optional[dict]: try: return get_saxo_quote_with_volatility(saxo_symbol, asset_type) except Exception as e: - logger.info(f"[watchlist/quotes] Saxo quote failed for '{saxo_symbol}' ({asset_type}), falling back to yfinance: {e}") + # WARNING, not INFO — the System Logs page only captures WARNING+ (confirmed + # 2026-07-23: an earlier INFO-level version of this message never showed up there). + logger.warning(f"[watchlist/quotes] Saxo quote failed for '{saxo_symbol}' ({asset_type}), falling back to yfinance: {e}") return None