Merge pull request #880 from RachelBryk/log

Disable all logs by default.
This commit is contained in:
skidau 2014-09-02 13:50:26 +10:00
commit d287a278cf
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)
{
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)
enableAll = false;