(self, record)
| 240 | |
| 241 | class ConsoleHandler(logging.StreamHandler): |
| 242 | def emit(self, record) -> None: |
| 243 | msg = self.format(record) |
| 244 | try: |
| 245 | print(msg) |
| 246 | except Exception: |
| 247 | self.handleError(record) |
| 248 | |
| 249 | |
| 250 | class AutoGptFormatter(logging.Formatter): |
no test coverage detected