From 6ff2e4d55002cca7ed836dfb39fdf0c82a7f615a Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Wed, 29 Jan 2025 08:08:01 -0500 Subject: [PATCH] Remove logging call added in last commit. This is called before the logging is set up so it messes up some things. --- folder_paths.py | 1 - 1 file changed, 1 deletion(-) diff --git a/folder_paths.py b/folder_paths.py index 4344fb18..3d8f61d4 100644 --- a/folder_paths.py +++ b/folder_paths.py @@ -16,7 +16,6 @@ folder_names_and_paths: dict[str, tuple[list[str], set[str]]] = {} # --base-directory - Resets all default paths configured in folder_paths with a new base path if args.base_directory: base_path = os.path.abspath(args.base_directory) - logging.info(f"Setting base directory to: {base_path}") else: base_path = os.path.dirname(os.path.realpath(__file__))