Skip to content

Commit

Permalink
Merge pull request #438 from multiversx/change-warning-to-info-config…
Browse files Browse the repository at this point in the history
…-check

Changed log level for localnet setup from warning to info when the configuration file already exists.
  • Loading branch information
danidrasovean authored Aug 9, 2024
2 parents f1ce216 + 9c75fae commit fd7531e
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 fd7531e

Please sign in to comment.