diff options
author | Aura Linden <aura@lindenlab.com> | 2012-12-11 06:56:14 -0800 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2012-12-11 06:56:14 -0800 |
commit | 53ea30af06f94b5462fada7c4bfea3122b50ff95 (patch) | |
tree | 33c46dcf0195562451b9026b16cab9c9ad97898e /indra/mac_crash_logger/llcrashloggermac.cpp | |
parent | 2b3bcdbcbb8359220e0026b84b8521197ad0cf50 (diff) |
Interim debug checkin to test from teamcity
Diffstat (limited to 'indra/mac_crash_logger/llcrashloggermac.cpp')
-rw-r--r-- | indra/mac_crash_logger/llcrashloggermac.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/mac_crash_logger/llcrashloggermac.cpp b/indra/mac_crash_logger/llcrashloggermac.cpp index 5d22b60136..64064d9cee 100644 --- a/indra/mac_crash_logger/llcrashloggermac.cpp +++ b/indra/mac_crash_logger/llcrashloggermac.cpp @@ -66,22 +66,31 @@ void LLCrashLoggerMac::gatherPlatformSpecificFiles() bool LLCrashLoggerMac::mainLoop() { + std::ofstream wlog; + wlog.open("/Users/samantha/crashlogging1.txt"); + wlog << "SPATTERS mainloop.!\n"; + if (mCrashBehavior == CRASH_BEHAVIOR_ALWAYS_SEND) { + wlog << "sending\n"; gSendReport = true; } if(gRememberChoice) { + wlog << "momento\n"; if(gSendReport) saveCrashBehaviorSetting(CRASH_BEHAVIOR_ALWAYS_SEND); else saveCrashBehaviorSetting(CRASH_BEHAVIOR_NEVER_SEND); } if(gSendReport) { + wlog << "Send report!"; setUserText(gUserNotes); sendCrashLogs(); - } + } + + wlog.close(); return true; } |