diff options
| author | Richard Linden <none@none> | 2013-08-23 14:22:01 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-08-23 14:22:01 -0700 | 
| commit | 235cc392934f1385f05e78f09a079c431a03b4b8 (patch) | |
| tree | 59833b84b19a03942ae54f0663eaf914bdbd9a2e /indra | |
| parent | d058447aaacbaa705b47036a3fc5efac233d1eaf (diff) | |
BUILDFIX: reverted some debugging changes to llerror.cpp
Diffstat (limited to 'indra')
| -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; | 
