Skip to content

Commit

Permalink
changing path DNE print from error to warning, so this isn't mistaken…
Browse files Browse the repository at this point in the history
… for a real error by users when they don't specify some optional tech (usually NDA) paths
  • Loading branch information
nayiri-k committed Sep 11, 2023
1 parent 61b0b8c commit 9848b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/tech/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ def check_installs(self) -> bool:
path_key = install.path
install_path = str(self.get_setting(path_key))
if not os.path.exists(install_path):
self.logger.error(f"The install path: {install_path} does not exist, looked at key {path_key}")
self.logger.warning(f"The install path: {install_path} does not exist, looked at key {path_key}")
return False
return True

Expand Down

0 comments on commit 9848b49

Please sign in to comment.