(self, msg, *args, **kwargs)
| 54 | self.increment("gunicorn.log.warning", 1) |
| 55 | |
| 56 | def exception(self, msg, *args, **kwargs): |
| 57 | Logger.exception(self, msg, *args, **kwargs) |
| 58 | self.increment("gunicorn.log.exception", 1) |
| 59 | |
| 60 | # Special treatment for info, the most common log level |
| 61 | def info(self, msg, *args, **kwargs): |