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)
| 2218 | root.info(msg, *args, **kwargs) |
| 2219 | |
| 2220 | def debug(msg, *args, **kwargs): |
| 2221 | """ |
| 2222 | Log a message with severity 'DEBUG' on the root logger. If the logger has |
| 2223 | no handlers, call basicConfig() to add a console handler with a pre-defined |
| 2224 | format. |
| 2225 | """ |
| 2226 | if len(root.handlers) == 0: |
| 2227 | basicConfig() |
| 2228 | root.debug(msg, *args, **kwargs) |
| 2229 | |
| 2230 | def log(level, msg, *args, **kwargs): |
| 2231 | """ |
nothing calls this directly
no test coverage detected
searching dependent graphs…