Disable all logging calls of severity 'level' and below.
(level=CRITICAL)
| 2238 | root.log(level, msg, *args, **kwargs) |
| 2239 | |
| 2240 | def disable(level=CRITICAL): |
| 2241 | """ |
| 2242 | Disable all logging calls of severity 'level' and below. |
| 2243 | """ |
| 2244 | root.manager.disable = level |
| 2245 | root.manager._clear_cache() |
| 2246 | |
| 2247 | def shutdown(handlerList=_handlerList): |
| 2248 | """ |
nothing calls this directly
no test coverage detected
searching dependent graphs…