Disable propagation of the library log outputs. Note that log propagation is disabled by default.
()
| 269 | |
| 270 | |
| 271 | def disable_propagation() -> None: |
| 272 | """ |
| 273 | Disable propagation of the library log outputs. Note that log propagation is disabled by default. |
| 274 | """ |
| 275 | |
| 276 | _configure_library_root_logger() |
| 277 | _get_library_root_logger().propagate = False |
| 278 | |
| 279 | |
| 280 | def enable_propagation() -> None: |
nothing calls this directly
no test coverage detected