Skip to content

Commit

Permalink
Mod: warning creating file
Browse files Browse the repository at this point in the history
  • Loading branch information
Caparrini committed Apr 6, 2024
1 parent 9705fc9 commit 573dccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mloptimizer/aux/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def create_optimization_folder(folder):
if os.path.exists(folder):
logging.warning("The folder {} already exists and it will be used".format(folder))
elif os.makedirs(folder, exist_ok=True):
logging.info("The folder {} has been created.".format(folder))
logging.warning("The folder {} has been created.".format(folder))
else:
logging.error("The folder {} could not be created.".format(folder))
return folder

0 comments on commit 573dccf

Please sign in to comment.