Delegate a debug call to the underlying logger.
(self, msg, *args, **kwargs)
| 1899 | # Boilerplate convenience methods |
| 1900 | # |
| 1901 | def debug(self, msg, *args, **kwargs): |
| 1902 | """ |
| 1903 | Delegate a debug call to the underlying logger. |
| 1904 | """ |
| 1905 | self.log(DEBUG, msg, *args, **kwargs) |
| 1906 | |
| 1907 | def info(self, msg, *args, **kwargs): |
| 1908 | """ |