summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAura Linden <aura@lindenlab.com>2014-04-15 10:35:40 -0700
committerAura Linden <aura@lindenlab.com>2014-04-15 10:35:40 -0700
commit13727121a5f86e28be15534a76f29061b1fa2906 (patch)
treec8a498040c808cd1f76b75a9c422e0d1c12aadee /indra
parente9976b07f902ab23032d5c8bae78b4eabd20b9d0 (diff)
Disabled 'Sending to server Try N' messages from crash reporting.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/llcrashlogger/llcrashlogger.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index 38858a1a91..3d3aed4272 100755
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -389,11 +389,12 @@ bool LLCrashLogger::runCrashLogPost(std::string host, LLSD data, std::string msg
gBreak = false;
for(int i = 0; i < retries; ++i)
{
- updateApplication(llformat("%s, try %d...", msg.c_str(), i+1));
+ //updateApplication lines removed because user doesn't really need to see these messages on their screen.
+ //updateApplication(llformat("%s, try %d...", msg.c_str(), i+1));
LLHTTPClient::post(host, data, new LLCrashLoggerResponder(), timeout);
while(!gBreak)
{
- updateApplication(); // No new message, just pump the IO
+ //updateApplication(); // No new message, just pump the IO
}
if(gSent)
{