Skip to content

Commit

Permalink
Change logger message level
Browse files Browse the repository at this point in the history
  • Loading branch information
Serene-Arc committed Jul 22, 2022
1 parent 23e20e6 commit af3f98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bdfr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ def parse_yaml_options(self, file_path: str):
return
for arg_key, val in opts.items():
if not hasattr(self, arg_key):
logger.error(f'Ignoring an unknown YAML argument: {arg_key}')
logger.warning(f'Ignoring an unknown YAML argument: {arg_key}')
continue
setattr(self, arg_key, val)

0 comments on commit af3f98f

Please sign in to comment.