WIP.Logger: Added severity level config. Added module tag

This commit is contained in:
emeric
2014-08-25 15:10:16 +02:00
parent 5a66ff10af
commit fa89133f9c
5 changed files with 195 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ ConfigReader::getLoggerConfig(Logger::Config& config)
{
config.enableFileLogging = _config.lookupValue("main.logger.file", config.logPath);
config.enableConsoleLogging = _config.lookup("main.logger.console");
config.minSeverity = static_cast<Severity>((int)_config.lookup("main.logger.level"));
}
void