Don't use this function, use critical() instead.
(msg, *args, **kwargs)
| 2159 | root.critical(msg, *args, **kwargs) |
| 2160 | |
| 2161 | def fatal(msg, *args, **kwargs): |
| 2162 | """ |
| 2163 | Don't use this function, use critical() instead. |
| 2164 | """ |
| 2165 | critical(msg, *args, **kwargs) |
| 2166 | |
| 2167 | def error(msg, *args, **kwargs): |
| 2168 | """ |
nothing calls this directly
no test coverage detected