Full traceback to see where error is

This commit is contained in:
2025-05-12 16:04:43 -04:00
parent c807a6309a
commit 1f52a6b4f5

View File

@ -307,7 +307,9 @@ class SystemHealthMonitor:
# Create tickets for any detected critical issues
self._create_tickets_for_issues(health_report)
except Exception as e:
print(f"Unexpected error during health check: {e}")
import traceback
logger.error(f"Unexpected error during health check: {e}")
logger.error(traceback.format_exc())
def perform_health_checks(self) -> Dict[str, Any]:
"""