Rip out load_log_settings in all projects

This commit is contained in:
Akkadius
2015-01-18 02:52:32 -06:00
parent 9eb05ff999
commit f81a8b716b
9 changed files with 10 additions and 42 deletions
-6
View File
@@ -87,12 +87,6 @@ int main() {
return 1;
}
/* Initialize Logging */
if (!load_log_settings(Config->LogSettingsFile.c_str()))
Log.Out(Logs::Detail, Logs::QS_Server, "Warning: Unable to read %s", Config->LogSettingsFile.c_str());
else
Log.Out(Logs::Detail, Logs::QS_Server, "Log settings loaded from %s", Config->LogSettingsFile.c_str());
if (signal(SIGINT, CatchSignal) == SIG_ERR) {
Log.Out(Logs::Detail, Logs::QS_Server, "Could not set signal handler");
return 1;