Log security-related events.
(self, event_type: str, message: str, correlation_id: str = None, **kwargs)
| 139 | correlation_id, status_code=status_code, response_time=response_time, **kwargs) |
| 140 | |
| 141 | def log_security_event(self, event_type: str, message: str, correlation_id: str = None, **kwargs): |
| 142 | """Log security-related events.""" |
| 143 | self._log(LogType.SECURITY, LogLevel.WARNING, message, correlation_id, |
| 144 | event_type=event_type, **kwargs) |
| 145 | |
| 146 | def log_performance(self, operation: str, duration: float, correlation_id: str = None, **kwargs): |
| 147 | """Log performance metrics.""" |
no test coverage detected