Disable propagation of the library log outputs. Note that log propagation is disabled by default.
()
| 220 | |
| 221 | |
| 222 | def disable_propagation() -> None: |
| 223 | """ |
| 224 | Disable propagation of the library log outputs. Note that log propagation is disabled by default. |
| 225 | """ |
| 226 | |
| 227 | _configure_library_root_logger() |
| 228 | _get_library_root_logger().propagate = False |
| 229 | |
| 230 | |
| 231 | def enable_propagation() -> None: |
nothing calls this directly
no test coverage detected