From d7d3d1b376b723483e78aa1ae5bedb0d24487176 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Wed, 7 May 2025 17:13:53 +0200 Subject: [PATCH] log traceback --- client/ayon_core/tools/utils/lib.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/ayon_core/tools/utils/lib.py b/client/ayon_core/tools/utils/lib.py index 6985254382..9ee89fbf3a 100644 --- a/client/ayon_core/tools/utils/lib.py +++ b/client/ayon_core/tools/utils/lib.py @@ -548,8 +548,10 @@ class _IconsCache: pix = QtGui.QPixmap() pix.loadFromData(content) icon = QtGui.QIcon(pix) - except Exception as exc: - log.warning(f"Failed to download image '{url}'") + except Exception: + log.warning( + f"Failed to download image '{url}'", exc_info=True + ) icon = None elif icon_type == "ayon_url":