Log warning.
(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs)
| 96 | self._log(log_type, LogLevel.DEBUG, message, correlation_id, **kwargs) |
| 97 | |
| 98 | def warning(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs): |
| 99 | """Log warning.""" |
| 100 | self._log(log_type, LogLevel.WARNING, message, correlation_id, **kwargs) |
| 101 | |
| 102 | def error(self, message: str, correlation_id: str = None, log_type: LogType = LogType.ERROR, **kwargs): |
| 103 | """Log error with details.""" |