Skip to content

Commit

Permalink
set settings logger with debug instead of warning (#392)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Jaquier Aurélien Tristan <aurelien.jaquier@epfl.ch>
  • Loading branch information
AurelienJaquier and Jaquier Aurélien Tristan committed May 7, 2024
1 parent d793808 commit 226ea09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions efel/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def set_setting(self,
raise ValueError(f"Invalid value for setting '{setting_name}'. "
f"Expected type: {expected_type.__name__}.")
else:
logger.warning("Setting '%s' not found in settings. "
"Adding it as a new setting.", setting_name)
logger.debug("Setting '%s' not found in settings. "
"Adding it as a new setting.", setting_name)

if setting_name == "dependencyfile_path":
path = Path(str(new_value))
Expand Down

0 comments on commit 226ea09

Please sign in to comment.