Log a message with severity 'DEBUG' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format.
(msg, *args, **kwargs)
| 2141 | root.info(msg, *args, **kwargs) |
| 2142 | |
| 2143 | def debug(msg, *args, **kwargs): |
| 2144 | """ |
| 2145 | Log a message with severity 'DEBUG' on the root logger. If the logger has |
| 2146 | no handlers, call basicConfig() to add a console handler with a pre-defined |
| 2147 | format. |
| 2148 | """ |
| 2149 | if len(root.handlers) == 0: |
| 2150 | basicConfig() |
| 2151 | root.debug(msg, *args, **kwargs) |
| 2152 | |
| 2153 | def log(level, msg, *args, **kwargs): |
| 2154 | """ |
nothing calls this directly
no test coverage detected