Disable all logs by default.

This commit is contained in:
Rachel Bryk 2014-08-26 03:59:17 -04:00
parent 25bd734578
commit 5d20455e7d
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ void LogConfigWindow::LoadSettings()
for (int i = 0; i < LogTypes::NUMBER_OF_LOGS; ++i) for (int i = 0; i < LogTypes::NUMBER_OF_LOGS; ++i)
{ {
bool log_enabled; bool log_enabled;
ini.GetOrCreateSection("Logs")->Get(m_LogManager->GetShortName((LogTypes::LOG_TYPE)i), &log_enabled, true); ini.GetOrCreateSection("Logs")->Get(m_LogManager->GetShortName((LogTypes::LOG_TYPE)i), &log_enabled, false);
if (log_enabled) if (log_enabled)
enableAll = false; enableAll = false;