Check if file logging is active.
(self)
| 537 | self.logger = logging.getLogger() |
| 538 | |
| 539 | def has_file_logging(self): |
| 540 | """Check if file logging is active.""" |
| 541 | return any(getattr(h, '_debug_file', False) for h in self.logger.handlers) |
| 542 | |
| 543 | def is_console_debug_on(self, batch_mode): |
| 544 | """Check if console debug is enabled.""" |
no outgoing calls
no test coverage detected