Don't use this function, use critical() instead.
(msg, *args, **kwargs)
| 2169 | root.critical(msg, *args, **kwargs) |
| 2170 | |
| 2171 | def fatal(msg, *args, **kwargs): |
| 2172 | """ |
| 2173 | Don't use this function, use critical() instead. |
| 2174 | """ |
| 2175 | critical(msg, *args, **kwargs) |
| 2176 | |
| 2177 | def error(msg, *args, **kwargs): |
| 2178 | """ |
nothing calls this directly
no test coverage detected
searching dependent graphs…