From 9c75faeb1cc9234cf79aa7223512df82fc9ce15d Mon Sep 17 00:00:00 2001 From: Daniel Drasovean Date: Fri, 9 Aug 2024 15:38:38 +0300 Subject: [PATCH] Changed log level from warning to info when the configuration file already exists --- multiversx_sdk_cli/localnet/step_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiversx_sdk_cli/localnet/step_new.py b/multiversx_sdk_cli/localnet/step_new.py index 7c1df9f4..cca8560c 100644 --- a/multiversx_sdk_cli/localnet/step_new.py +++ b/multiversx_sdk_cli/localnet/step_new.py @@ -12,7 +12,7 @@ def new_config(configfile: Path): configfile = configfile.expanduser().resolve() if configfile.exists(): - logger.warning(f"Configuration file already exists: {configfile}") + logger.info(f"Configuration file already exists: {configfile}") return config = ConfigRoot()