diff --git a/source/configurator/configuration.cpp b/source/configurator/configuration.cpp index 8cbe5285e..6f7eb860b 100644 --- a/source/configurator/configuration.cpp +++ b/source/configurator/configuration.cpp @@ -139,7 +139,7 @@ void FieldGroup::load(const XmlNode *groupNode){ f->loadSpecific(fieldNode); if(!f->isValueValid(f->getDefaultValue())){ - throw runtime_error("Default value not valid in field: " + f->getName()); + throw runtime_error("Default value not valid in field: " + f->getName() + " [" + f->getDefaultValue() + "]"); } fields[i]= f;