(self, *args, **kwargs)
| 31 | super().log(level, f'Dumped stack and locals to {name}') |
| 32 | |
| 33 | def warning(self, *args, **kwargs): |
| 34 | self._log_with_stack(logging.WARNING, *args, **kwargs) |
| 35 | |
| 36 | def error(self, *args, **kwargs): |
| 37 | self._log_with_stack(logging.ERROR, *args, **kwargs) |
no test coverage detected