Disable propagation of the library log outputs. Note that log propagation is disabled by default.
()
| 206 | |
| 207 | |
| 208 | def disable_propagation() -> None: |
| 209 | """ |
| 210 | Disable propagation of the library log outputs. Note that log propagation is disabled by default. |
| 211 | """ |
| 212 | |
| 213 | _configure_library_root_logger() |
| 214 | _get_library_root_logger().propagate = False |
| 215 | |
| 216 | |
| 217 | def enable_propagation() -> None: |
nothing calls this directly
no test coverage detected