Enable propagation of the library log outputs. Please disable the HuggingFace Transformers's default handler to prevent double logging if the root logger has been configured.
()
| 278 | |
| 279 | |
| 280 | def enable_propagation() -> None: |
| 281 | """ |
| 282 | Enable propagation of the library log outputs. Please disable the HuggingFace Transformers's default handler to |
| 283 | prevent double logging if the root logger has been configured. |
| 284 | """ |
| 285 | |
| 286 | _configure_library_root_logger() |
| 287 | _get_library_root_logger().propagate = True |
| 288 | |
| 289 | |
| 290 | def enable_explicit_format() -> None: |
nothing calls this directly
no test coverage detected