ltdrdata / ComfyUI-Manager

ComfyUI-Manager is an extension designed to enhance the usability of ComfyUI. It offers management functions to install, remove, disable, and enable various custom nodes of ComfyUI. Furthermore, this extension provides a hub feature and convenience functions to access a wide range of information within ComfyUI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Highlight issue

viperyl opened this issue · comments

I only installed personal nodes and ComfyUI-Manger.
During the exectuion of workflow, the loguru logger cannot correctly print it's color. and loguru logger colored correctly after removed ComfyUI-Manager.
a sample code is here

from loguru import logger

logger.debug(f"XXXXX")

the screen print with ComfyUI-Manager

Screenshot 2024-06-17 at 18 25 16

the screen print without ComfyUI-Manager
Screenshot 2024-06-17 at 18 26 16

ComfyUI-Manager is intercepting stdout to capture all output logs and create a log file. That's the reason.
Some modules like tqdm have limited functionality when stdout is intercepted.