mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-12 18:33:35 +00:00
Remove debug logging for skipped custom nodes in prestartup script execution
This commit is contained in:
parent
c2e4b96f85
commit
9b608b6f92
1
main.py
1
main.py
@ -88,7 +88,6 @@ def execute_prestartup_script():
|
||||
|
||||
# Skip modules that are not in INCLUDED_CUSTOM_NODES
|
||||
if included_custom_nodes and possible_module not in included_custom_nodes:
|
||||
logging.debug(f"Skipping {possible_module} (not in INCLUDED_CUSTOM_NODES)")
|
||||
continue
|
||||
|
||||
script_path = os.path.join(module_path, "prestartup_script.py")
|
||||
|
1
nodes.py
1
nodes.py
@ -2162,7 +2162,6 @@ def init_external_custom_nodes():
|
||||
for possible_module in possible_modules:
|
||||
# Skip modules that are not in INCLUDED_CUSTOM_NODES
|
||||
if included_custom_nodes and possible_module not in included_custom_nodes:
|
||||
logging.debug(f"Skipping {possible_module} (not in INCLUDED_CUSTOM_NODES)")
|
||||
continue
|
||||
|
||||
module_path = os.path.join(custom_node_path, possible_module)
|
||||
|
Loading…
Reference in New Issue
Block a user