We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d13398a + 30e1daa commit 56de140Copy full SHA for 56de140
1 file changed
source/_addonStore/dataManager.py
@@ -281,7 +281,7 @@ def _getCachedInstalledAddonData(self, addonId: str) -> Optional[InstalledAddonS
281
with open(addonCachePath, 'r', encoding='utf-8') as cacheFile:
282
cacheData = json.load(cacheFile)
283
except Exception:
284
- log.exception("Invalid cached installed add-on data")
+ log.exception(f"Invalid cached installed add-on data: {addonCachePath}")
285
return None
286
if not cacheData:
287
0 commit comments