Skip to content
Snippets Groups Projects
Commit 235cc392 authored by Richard Linden's avatar Richard Linden
Browse files

BUILDFIX: reverted some debugging changes to llerror.cpp

parent d058447a
No related branches found
No related tags found
No related merge requests found
...@@ -929,8 +929,7 @@ namespace ...@@ -929,8 +929,7 @@ namespace
const_cast<LLError::CallSite&>(site).mTagString += " "; const_cast<LLError::CallSite&>(site).mTagString += " ";
if (show_location && (r->wantsLocation() || level == LLError::LEVEL_ERROR || s.mPrintLocation)) if (show_location && (r->wantsLocation() || level == LLError::LEVEL_ERROR || s.mPrintLocation))
{ {
//message_stream << site.mLocationString; message_stream << site.mLocationString << " ";
message_stream << " ";
} }
if (show_time && r->wantsTime() && s.mTimeFunction != NULL) if (show_time && r->wantsTime() && s.mTimeFunction != NULL)
...@@ -950,7 +949,7 @@ namespace ...@@ -950,7 +949,7 @@ namespace
if (show_function && r->wantsFunctionName()) if (show_function && r->wantsFunctionName())
{ {
//message_stream << site.mFunctionString << " "; message_stream << site.mFunctionString << " ";
} }
message_stream << message; message_stream << message;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment