Log a message with severity 'INFO' 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)
| 2198 | warning(msg, *args, **kwargs) |
| 2199 | |
| 2200 | def info(msg, *args, **kwargs): |
| 2201 | """ |
| 2202 | Log a message with severity 'INFO' on the root logger. If the logger has |
| 2203 | no handlers, call basicConfig() to add a console handler with a pre-defined |
| 2204 | format. |
| 2205 | """ |
| 2206 | if len(root.handlers) == 0: |
| 2207 | basicConfig() |
| 2208 | root.info(msg, *args, **kwargs) |
| 2209 | |
| 2210 | def debug(msg, *args, **kwargs): |
| 2211 | """ |
nothing calls this directly
no test coverage detected