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.
()
| 249 | |
| 250 | |
| 251 | def enable_propagation() -> None: |
| 252 | """ |
| 253 | Enable propagation of the library log outputs. Please disable the HuggingFace Diffusers' default handler to prevent |
| 254 | double logging if the root logger has been configured. |
| 255 | """ |
| 256 | |
| 257 | _configure_library_root_logger() |
| 258 | _get_library_root_logger().propagate = True |
| 259 | |
| 260 | |
| 261 | def enable_explicit_format() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…