1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Change log levels.

Logging level now defaults to info. --verbose sets it to debug.
This commit is contained in:
comfyanonymous
2024-03-11 13:54:56 -04:00
parent dc6d4151a2
commit 0ed72befe1
9 changed files with 38 additions and 37 deletions

View File

@@ -129,7 +129,7 @@ if args.disable_auto_launch:
args.auto_launch = False
import logging
logging_level = logging.WARNING
logging_level = logging.INFO
if args.verbose:
logging_level = logging.DEBUG