Log a message with severity 'ERROR' on the root logger, with exception information. If the logger has no handlers, basicConfig() is called to add a console handler with a pre-defined format.
(msg, *args, exc_info=True, **kwargs)
| 2185 | root.error(msg, *args, **kwargs) |
| 2186 | |
| 2187 | def exception(msg, *args, exc_info=True, **kwargs): |
| 2188 | """ |
| 2189 | Log a message with severity 'ERROR' on the root logger, with exception |
| 2190 | information. If the logger has no handlers, basicConfig() is called to add |
| 2191 | a console handler with a pre-defined format. |
| 2192 | """ |
| 2193 | error(msg, *args, exc_info=exc_info, **kwargs) |
| 2194 | |
| 2195 | def warning(msg, *args, **kwargs): |
| 2196 | """ |
no test coverage detected
searching dependent graphs…