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.
()
| 239 | |
| 240 | |
| 241 | def enable_explicit_format() -> None: |
| 242 | """ |
| 243 | Enable explicit formatting for every 🤗 Diffusers' logger. The explicit formatter is as follows: |
| 244 | ``` |
| 245 | [LEVELNAME|FILENAME|LINE NUMBER] TIME >> MESSAGE |
| 246 | ``` |
| 247 | All handlers currently bound to the root logger are affected by this method. |
| 248 | """ |
| 249 | handlers = _get_library_root_logger().handlers |
| 250 | |
| 251 | for handler in handlers: |
| 252 | formatter = logging.Formatter("[%(levelname)s|%(filename)s:%(lineno)s] %(asctime)s >> %(message)s") |
| 253 | handler.setFormatter(formatter) |
| 254 | |
| 255 | |
| 256 | def reset_format() -> None: |
nothing calls this directly
no test coverage detected