Disable propagation of the library log outputs. Note that log propagation is disabled by default.
()
| 240 | |
| 241 | |
| 242 | def disable_propagation() -> None: |
| 243 | """ |
| 244 | Disable propagation of the library log outputs. Note that log propagation is disabled by default. |
| 245 | """ |
| 246 | |
| 247 | _configure_library_root_logger() |
| 248 | _get_library_root_logger().propagate = False |
| 249 | |
| 250 | |
| 251 | def enable_propagation() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…