1
0
Fork 0
mirror of synced 2024-05-20 12:12:40 +12:00

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
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)