Skip to content

Commit dd734f5

Browse files
preghenellasawenzel
authored andcommitted
ConfigurableParam: abort if any configuration key is invalid
1 parent d85253d commit dd734f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Common/SimConfig/src/ConfigurableParam.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void ConfigurableParam::updateFromString(std::string configstring)
159159

160160
setValue(extractedkey, extractedvalue);
161161
} else {
162-
LOG(WARN) << "Configuration key " << extractedkey << " not valid ... (ignoring)";
162+
LOG(FATAL) << "Configuration key " << extractedkey << " not valid ... (abort)";
163163
continue;
164164
}
165165
}

0 commit comments

Comments
 (0)