Skip to content

Commit

Permalink
Changed log level from warning to info when the configuration file al…
Browse files Browse the repository at this point in the history
…ready exists
  • Loading branch information
danidrasovean committed Aug 9, 2024
1 parent f1ce216 commit 9c75fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/localnet/step_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9c75fae

Please sign in to comment.