mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-05 07:30:40 -05:00
11 lines
197 B
Python
11 lines
197 B
Python
import logging
|
|
|
|
|
|
DETAIL = 15
|
|
logging.addLevelName(DETAIL, "DETAIL")
|
|
|
|
|
|
def detail(message, *args, **kwargs):
|
|
kwargs.setdefault("stacklevel", 2)
|
|
logging.log(DETAIL, message, *args, **kwargs)
|