summaryrefslogtreecommitdiff
path: root/indra/mac_crash_logger/llcrashloggermac.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/mac_crash_logger/llcrashloggermac.cpp')
-rw-r--r--indra/mac_crash_logger/llcrashloggermac.cpp11
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;
}