Disable all logging calls of severity 'level' and below.
(level=CRITICAL)
| 2228 | root.log(level, msg, *args, **kwargs) |
| 2229 | |
| 2230 | def disable(level=CRITICAL): |
| 2231 | """ |
| 2232 | Disable all logging calls of severity 'level' and below. |
| 2233 | """ |
| 2234 | root.manager.disable = level |
| 2235 | root.manager._clear_cache() |
| 2236 | |
| 2237 | def shutdown(handlerList=_handlerList): |
| 2238 | """ |
nothing calls this directly
no test coverage detected