diff --git a/src/hammer_config/config_src.py b/src/hammer_config/config_src.py index 4111046e3..3e813a0d3 100644 --- a/src/hammer_config/config_src.py +++ b/src/hammer_config/config_src.py @@ -758,7 +758,8 @@ def get_setting(self, key: str, nullvalue: Any = None, check_type: bool = True) if key not in self.get_config(): raise KeyError("Key " + key + " is missing") if key not in IGNORE and key not in defaults: - warn(f"Key {key} does not have a default implementation") + # warn(f"Key {key} does not have a default implementation") + pass if check_type and key not in IGNORE: if key not in self.get_config_types(): warn(f"Key {key} is not associated with a type")