Implement crash handling on Linux

This will allow us to generate crash dumps and have users report
crashes.
This commit is contained in:
Forkk 2014-05-09 17:33:32 -05:00
parent cf616efb5d
commit 93ae21abfc
8 changed files with 279 additions and 1 deletions

View file

@ -327,8 +327,11 @@ void MultiMC::initLogger()
logger.addDestination(m_debugDestination.get());
// log all the things
logger.setLoggingLevel(QsLogging::TraceLevel);
loggerInitialized = true;
}
bool loggerInitialized = false;
void MultiMC::initGlobalSettings()
{
m_settings.reset(new INISettingsObject("multimc.cfg", this));