Enable propagation of the library log outputs. Please disable the HuggingFace Diffusers' default handler to prevent double logging if the root logger has been configured.
()
| 229 | |
| 230 | |
| 231 | def enable_propagation() -> None: |
| 232 | """ |
| 233 | Enable propagation of the library log outputs. Please disable the HuggingFace Diffusers' default handler to prevent |
| 234 | double logging if the root logger has been configured. |
| 235 | """ |
| 236 | |
| 237 | _configure_library_root_logger() |
| 238 | _get_library_root_logger().propagate = True |
| 239 | |
| 240 | |
| 241 | def enable_explicit_format() -> None: |
nothing calls this directly
no test coverage detected