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)
| 2131 | warning(msg, *args, **kwargs) |
| 2132 | |
| 2133 | def info(msg, *args, **kwargs): |
| 2134 | """ |
| 2135 | Log a message with severity 'INFO' on the root logger. If the logger has |
| 2136 | no handlers, call basicConfig() to add a console handler with a pre-defined |
| 2137 | format. |
| 2138 | """ |
| 2139 | if len(root.handlers) == 0: |
| 2140 | basicConfig() |
| 2141 | root.info(msg, *args, **kwargs) |
| 2142 | |
| 2143 | def debug(msg, *args, **kwargs): |
| 2144 | """ |
no test coverage detected