summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Glazer <coyot@lindenlab.com>2016-10-10 16:03:10 -0700
committerGlenn Glazer <coyot@lindenlab.com>2016-10-10 16:03:10 -0700
commit22ac9a10d8ecc8a978eaaa4ef05cfcdaea1e7604 (patch)
tree811222d51f2e28362f599adfb6666c87d416b8f2
parentcea2e4a7ad0f340c8bc582030490eee1099f19bf (diff)
maint-6633: fix spacing after level:
-rw-r--r--indra/llcommon/llerror.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index 345ec3661b..5129cdfde9 100644
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -928,7 +928,7 @@ namespace
if (show_level && r->wantsLevel())
{
- message_stream << site.mLevelString;
+ message_stream << site.mLevelString << " ";
}
if (show_tags && r->wantsTags())
@@ -936,10 +936,11 @@ namespace
message_stream << site.mTagString;
}
- if (show_location && (r->wantsLocation() || level == LLError::LEVEL_ERROR || s->mPrintLocation))
- {
- message_stream << site.mLocationString << " ";
- }
+ if (show_location && (r->wantsLocation() || level == LLError::LEVEL_ERROR || s->mPrintLocation))
+ {
+ message_stream << site.mLocationString << " ";
+ }
+
if ((show_level && r->wantsLevel())||
(show_tags && r->wantsTags()))
{