summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAura Linden <aura@lindenlab.com>2014-04-16 11:08:52 -0700
committerAura Linden <aura@lindenlab.com>2014-04-16 11:08:52 -0700
commit3c1674f786adce4d62a4453f2497a3dff749ddd9 (patch)
treec446e432d58b698686f56cfa723133f96f67e8a0
parenta39c5926fccb2e7a209240fc29d2086f1ce78272 (diff)
Undo of overzealous removal.
-rwxr-xr-xindra/llcrashlogger/llcrashlogger.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index 3d3aed4272..38858a1a91 100755
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -389,12 +389,11 @@ bool LLCrashLogger::runCrashLogPost(std::string host, LLSD data, std::string msg
gBreak = false;
for(int i = 0; i < retries; ++i)
{
- //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));
+ 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)
{