MCPcopy Index your code
hub / github.com/huggingface/diffusers / enable_explicit_format

Function enable_explicit_format

src/diffusers/utils/logging.py:261–273  ·  view source on GitHub ↗

Enable explicit formatting for every 🤗 Diffusers' logger. The explicit formatter is as follows: ``` [LEVELNAME|FILENAME|LINE NUMBER] TIME >> MESSAGE ``` All handlers currently bound to the root logger are affected by this method.

()

Source from the content-addressed store, hash-verified

259
260
261def enable_explicit_format() -> None:
262 """
263 Enable explicit formatting for every 🤗 Diffusers' logger. The explicit formatter is as follows:
264 ```
265 [LEVELNAME|FILENAME|LINE NUMBER] TIME >> MESSAGE
266 ```
267 All handlers currently bound to the root logger are affected by this method.
268 """
269 handlers = _get_library_root_logger().handlers
270
271 for handler in handlers:
272 formatter = logging.Formatter("[%(levelname)s|%(filename)s:%(lineno)s] %(asctime)s >> %(message)s")
273 handler.setFormatter(formatter)
274
275
276def reset_format() -> None:

Callers

nothing calls this directly

Calls 1

_get_library_root_loggerFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…