Full traceback to see where error is
This commit is contained in:
@ -307,7 +307,9 @@ class SystemHealthMonitor:
|
|||||||
# Create tickets for any detected critical issues
|
# Create tickets for any detected critical issues
|
||||||
self._create_tickets_for_issues(health_report)
|
self._create_tickets_for_issues(health_report)
|
||||||
except Exception as e:
|
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]:
|
def perform_health_checks(self) -> Dict[str, Any]:
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user