fix(core): use logger exception

This commit is contained in:
smypmsa
2025-08-05 16:09:05 +00:00
parent 83a7f9e4ad
commit 874d148777
13 changed files with 60 additions and 63 deletions
+1 -1
View File
@@ -242,7 +242,7 @@ class IDLManager:
"event_count": len(event_names),
}
except Exception as e:
logger.error(f"Failed to get capabilities for {platform.value}: {e}")
logger.exception(f"Failed to get capabilities for {platform.value}")
return {
"platform": platform.value,
"has_idl_support": False,