diff options
| -rwxr-xr-x | indra/llcommon/llerror.cpp | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 5bb6f53828..a51f8f216a 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; | 
