From 22ac9a10d8ecc8a978eaaa4ef05cfcdaea1e7604 Mon Sep 17 00:00:00 2001
From: Glenn Glazer <coyot@lindenlab.com>
Date: Mon, 10 Oct 2016 16:03:10 -0700
Subject: maint-6633: fix spacing after level:

---
 indra/llcommon/llerror.cpp | 11 ++++++-----
 1 file 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()))
             {
-- 
cgit v1.2.3