summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-08-23 14:22:01 -0700
committerRichard Linden <none@none>2013-08-23 14:22:01 -0700
commit235cc392934f1385f05e78f09a079c431a03b4b8 (patch)
tree59833b84b19a03942ae54f0663eaf914bdbd9a2e /indra/llcommon
parentd058447aaacbaa705b47036a3fc5efac233d1eaf (diff)
BUILDFIX: reverted some debugging changes to llerror.cpp
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/llerror.cpp5
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;