From c20aa1ae2645b9e8c73877e728607257f7f27453 Mon Sep 17 00:00:00 2001 From: ashuaibi7 Date: Tue, 7 Jan 2025 11:20:31 -0500 Subject: [PATCH] remove verbose logging statement to print out file directory for cases where it is not provided by user to avoid runtime errors --- src/dialect/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dialect/__main__.py b/src/dialect/__main__.py index 1eeb8db..90c17ff 100644 --- a/src/dialect/__main__.py +++ b/src/dialect/__main__.py @@ -18,7 +18,6 @@ def main(): logging.info("Running DIALECT Command Line Interface") logging.verbose(f"Arguments: {args}") logging.info(f"Command: {args.command}") - logging.verbose(f"Creating output directory: {args.out}") if args.command == "generate": os.makedirs(args.out, exist_ok=True)