Log debug information.
(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs)
| 92 | self._log(log_type, LogLevel.INFO, message, correlation_id, **kwargs) |
| 93 | |
| 94 | def debug(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs): |
| 95 | """Log debug information.""" |
| 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.""" |