From 40fd39c7cb16702d60aa84c89add56cf7d2f52b7 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Thu, 12 Jun 2025 14:14:59 -0700 Subject: [PATCH] debug -> warning (#8506) --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 89201cc7..8e5b47b3 100644 --- a/nodes.py +++ b/nodes.py @@ -2142,7 +2142,7 @@ def load_custom_node(module_path: str, ignore=set(), module_parent="custom_nodes logging.info("Automatically register web folder {} for {}".format(web_dir_name, project_name)) except Exception as e: - logging.debug(f"Unable to parse pyproject.toml due to lack dependency pydantic-settings, please run 'pip install -r requirements.txt': {e}") + logging.warning(f"Unable to parse pyproject.toml due to lack dependency pydantic-settings, please run 'pip install -r requirements.txt': {e}") if hasattr(module, "WEB_DIRECTORY") and getattr(module, "WEB_DIRECTORY") is not None: web_dir = os.path.abspath(os.path.join(module_dir, getattr(module, "WEB_DIRECTORY")))