r"""Log ``message.format(*args, **kwargs)`` with severity ``'DEBUG'``.
(__self, __message, *args, **kwargs)
| 2070 | __self._log("TRACE", False, __self._options, __message, args, kwargs) |
| 2071 | |
| 2072 | def debug(__self, __message, *args, **kwargs): # noqa: N805 |
| 2073 | r"""Log ``message.format(*args, **kwargs)`` with severity ``'DEBUG'``.""" |
| 2074 | __self._log("DEBUG", False, __self._options, __message, args, kwargs) |
| 2075 | |
| 2076 | def info(__self, __message, *args, **kwargs): # noqa: N805 |
| 2077 | r"""Log ``message.format(*args, **kwargs)`` with severity ``'INFO'``.""" |