Add category to error message

remove_cruft
elsid 2 years ago
parent 9f4322951f
commit 0a678224cd
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

@ -177,10 +177,8 @@ namespace Settings
if (it != mDefaultSettings.end())
return it->second;
std::string error("Trying to retrieve a non-existing setting: ");
error += setting;
error += ".\nMake sure the defaults.bin file was properly installed.";
throw std::runtime_error(error);
throw std::runtime_error("Trying to retrieve a non-existing setting: [" + std::string(category) + "] "
+ std::string(setting) + ".\nMake sure the defaults.bin file was properly installed.");
}
std::vector<std::string> Manager::getStringArray(std::string_view setting, std::string_view category)

Loading…
Cancel
Save