maint-6633: fix spacing after level:

master
Glenn Glazer 2016-10-10 16:03:10 -07:00
parent cea2e4a7ad
commit 22ac9a10d8
1 changed files with 6 additions and 5 deletions

View File

@ -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()))
{