diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-05-06 23:26:24 +0300 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2016-05-06 23:26:24 +0300 |
commit | ffbbc30d1a2978066e13e21d6de9dbc7e0f00276 (patch) | |
tree | 228eb4649e3f9cc77e1683a45f5970b86e6acc75 /indra/mac_crash_logger/llcrashloggermac.cpp | |
parent | 8e91c90ca3ea00ea992783be61263553573e221b (diff) | |
parent | f47b0b146e122b0d93ba6d1d05ca6490c20d07e2 (diff) |
Merged in lindenlab/viewer-lynx
Diffstat (limited to 'indra/mac_crash_logger/llcrashloggermac.cpp')
-rwxr-xr-x | indra/mac_crash_logger/llcrashloggermac.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/indra/mac_crash_logger/llcrashloggermac.cpp b/indra/mac_crash_logger/llcrashloggermac.cpp index 351009814d..3149fad6e8 100755 --- a/indra/mac_crash_logger/llcrashloggermac.cpp +++ b/indra/mac_crash_logger/llcrashloggermac.cpp @@ -66,22 +66,19 @@ void LLCrashLoggerMac::gatherPlatformSpecificFiles() bool LLCrashLoggerMac::mainLoop() { + if (mCrashBehavior == CRASH_BEHAVIOR_ALWAYS_SEND) { gSendReport = true; } - if(gRememberChoice) - { - if(gSendReport) saveCrashBehaviorSetting(CRASH_BEHAVIOR_ALWAYS_SEND); - else saveCrashBehaviorSetting(CRASH_BEHAVIOR_NEVER_SEND); - } - if(gSendReport) { setUserText(gUserNotes); sendCrashLogs(); } + + LL_INFOS() << "Sending of logs complete" << LL_ENDL; return true; } |