Remove logging call added in last commit.

This is called before the logging is set up so it messes up some things.
This commit is contained in:
comfyanonymous 2025-01-29 08:08:01 -05:00
parent 222f48c0f2
commit 6ff2e4d550

View File

@ -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 # --base-directory - Resets all default paths configured in folder_paths with a new base path
if args.base_directory: if args.base_directory:
base_path = os.path.abspath(args.base_directory) base_path = os.path.abspath(args.base_directory)
logging.info(f"Setting base directory to: {base_path}")
else: else:
base_path = os.path.dirname(os.path.realpath(__file__)) base_path = os.path.dirname(os.path.realpath(__file__))