src: added StartupProject setting to ApplicationSettings

This commit is contained in:
Eberhard Graether
2015-03-17 14:45:49 +01:00
parent ba48731c8c
commit c4ca420677
5 changed files with 22 additions and 4 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ bool ConfigManager::getValue(const std::string& key, std::string& value) const
}
else
{
LOG_ERROR("value " + key + " is not present in config.");
LOG_WARNING("value " + key + " is not present in config.");
return false;
}
}
@@ -84,7 +84,7 @@ bool ConfigManager::getValues(const std::string& key, std::vector<std::string>&
}
else
{
LOG_ERROR("value " + key + " is not present in config.");
LOG_WARNING("value " + key + " is not present in config.");
return false;
}
}