Don't use this function, use critical() instead.
(msg, *args, **kwargs)
| 2092 | root.critical(msg, *args, **kwargs) |
| 2093 | |
| 2094 | def fatal(msg, *args, **kwargs): |
| 2095 | """ |
| 2096 | Don't use this function, use critical() instead. |
| 2097 | """ |
| 2098 | critical(msg, *args, **kwargs) |
| 2099 | |
| 2100 | def error(msg, *args, **kwargs): |
| 2101 | """ |
nothing calls this directly
no test coverage detected