From 6cf9c3b4ed957c7b6deae5eb1cf7070ab41ce7e5 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Sat, 30 Apr 2011 16:00:06 -0500 Subject: [PATCH] Demoted llerrs to llwarns in HippoGridManager::saveFile() to prevent forcing the client to crash on connect if something goes wrong there(Have had a few reports of this llerrs popping up for people on XP). Failure to save is non-critical. --- indra/newview/hippogridmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/hippogridmanager.cpp b/indra/newview/hippogridmanager.cpp index c2a9bb6c0..504b941d0 100644 --- a/indra/newview/hippogridmanager.cpp +++ b/indra/newview/hippogridmanager.cpp @@ -981,6 +981,6 @@ void HippoGridManager::saveFile() } else { - llerrs << "Unable to open grid info file: " << fileName << llendl; + llwarns << "Unable to open grid info file for save: " << fileName << llendl; } }