diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index 5bb6f53828ab9ebdb236739cd894bb2cca2ee718..a51f8f216ac575e10a2f153db3d4df88672b233a 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;