Change logger message level

This commit is contained in:
Serene-Arc
2022-07-22 15:45:38 +10:00
parent 23e20e6ddc
commit af3f98f59c

View File

@@ -79,6 +79,6 @@ class Configuration(Namespace):
return return
for arg_key, val in opts.items(): for arg_key, val in opts.items():
if not hasattr(self, arg_key): 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 continue
setattr(self, arg_key, val) setattr(self, arg_key, val)