diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index 38858a1a9110d29c5cf830d6e9422a8f8ce29f0b..3d3aed427278aa0abca9a2a92dd80d65508b94c3 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)
 		{