Log information.
(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs)
| 88 | self.logger.log(log_level, formatted_log) |
| 89 | |
| 90 | def info(self, message: str, correlation_id: str = None, log_type: LogType = LogType.WORKFLOW, **kwargs): |
| 91 | """Log information.""" |
| 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.""" |