Debug logging with rich formatting if available.
(self, message: str, **kwargs)
| 88 | self.logger.setLevel(logging.DEBUG) |
| 89 | |
| 90 | def log_debug(self, message: str, **kwargs): |
| 91 | """Debug logging with rich formatting if available.""" |
| 92 | if self.debug_mode: |
| 93 | if self.console: |
| 94 | self.console.print(f"[dim]DEBUG: {message}[/dim]", **kwargs) |
| 95 | self.logger.debug(message) |
| 96 | |
| 97 | def log_error(self, message: str, **kwargs): |
| 98 | """Error logging with rich formatting if available.""" |
no outgoing calls
no test coverage detected