Delegate a debug call to the underlying logger.
(self, msg, *args, **kwargs)
| 1907 | # Boilerplate convenience methods |
| 1908 | # |
| 1909 | def debug(self, msg, *args, **kwargs): |
| 1910 | """ |
| 1911 | Delegate a debug call to the underlying logger. |
| 1912 | """ |
| 1913 | self.log(DEBUG, msg, *args, **kwargs) |
| 1914 | |
| 1915 | def info(self, msg, *args, **kwargs): |
| 1916 | """ |