Skip to content

Commit 40fd39c

Browse files
debug -> warning (Comfy-Org#8506)
1 parent 4d1c4b9 commit 40fd39c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@ def load_custom_node(module_path: str, ignore=set(), module_parent="custom_nodes
21422142

21432143
logging.info("Automatically register web folder {} for {}".format(web_dir_name, project_name))
21442144
except Exception as e:
2145-
logging.debug(f"Unable to parse pyproject.toml due to lack dependency pydantic-settings, please run 'pip install -r requirements.txt': {e}")
2145+
logging.warning(f"Unable to parse pyproject.toml due to lack dependency pydantic-settings, please run 'pip install -r requirements.txt': {e}")
21462146

21472147
if hasattr(module, "WEB_DIRECTORY") and getattr(module, "WEB_DIRECTORY") is not None:
21482148
web_dir = os.path.abspath(os.path.join(module_dir, getattr(module, "WEB_DIRECTORY")))

0 commit comments

Comments
 (0)