log traceback

This commit is contained in:
Jakub Trllo 2025-05-07 17:13:53 +02:00
parent cd63538522
commit d7d3d1b376

View file

@ -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":