(self, msg, *args, **kwargs)
| 59 | |
| 60 | # Special treatment for info, the most common log level |
| 61 | def info(self, msg, *args, **kwargs): |
| 62 | self.log(logging.INFO, msg, *args, **kwargs) |
| 63 | |
| 64 | # skip the run-of-the-mill logs |
| 65 | def debug(self, msg, *args, **kwargs): |