diff --git a/main.py b/main.py index 0da854e0d..23faa980b 100644 --- a/main.py +++ b/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") diff --git a/nodes.py b/nodes.py index f0316463b..9e84aa736 100644 --- a/nodes.py +++ b/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)