Skip to content
Snippets Groups Projects
Commit 13727121 authored by Aura Linden's avatar Aura Linden
Browse files

Disabled 'Sending to server Try N' messages from crash reporting.

parent e9976b07
No related branches found
No related tags found
No related merge requests found
...@@ -389,11 +389,12 @@ bool LLCrashLogger::runCrashLogPost(std::string host, LLSD data, std::string msg ...@@ -389,11 +389,12 @@ bool LLCrashLogger::runCrashLogPost(std::string host, LLSD data, std::string msg
gBreak = false; gBreak = false;
for(int i = 0; i < retries; ++i) 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); LLHTTPClient::post(host, data, new LLCrashLoggerResponder(), timeout);
while(!gBreak) while(!gBreak)
{ {
updateApplication(); // No new message, just pump the IO //updateApplication(); // No new message, just pump the IO
} }
if(gSent) if(gSent)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment