From 235cc392934f1385f05e78f09a079c431a03b4b8 Mon Sep 17 00:00:00 2001
From: Richard Linden <none@none>
Date: Fri, 23 Aug 2013 14:22:01 -0700
Subject: [PATCH] BUILDFIX: reverted some debugging changes to llerror.cpp

---
 indra/llcommon/llerror.cpp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index 5bb6f53828a..a51f8f216ac 100755
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -929,8 +929,7 @@ namespace
             const_cast<LLError::CallSite&>(site).mTagString += " ";
 			if (show_location && (r->wantsLocation() || level == LLError::LEVEL_ERROR || s.mPrintLocation))
 			{
-				//message_stream << site.mLocationString;
-                message_stream << " ";
+				message_stream << site.mLocationString << " ";
 			}
 
 			if (show_time && r->wantsTime() && s.mTimeFunction != NULL)
@@ -950,7 +949,7 @@ namespace
 			
 			if (show_function && r->wantsFunctionName())
 			{
-				//message_stream << site.mFunctionString << " ";
+				message_stream << site.mFunctionString << " ";
 			}
 
 			message_stream << message;
-- 
GitLab