Merge vmm up to 3a62616f3dd8bd512fcdfd29ef033b2505b11213
This commit is contained in:
committed by
Lirusaito
parent
1d6e2b4182
commit
fd4155f4b6
@@ -120,6 +120,7 @@ namespace {
|
||||
LL_INFOS() << "Error setting log file to " << filename << LL_ENDL;
|
||||
}
|
||||
mWantsTime = true;
|
||||
mWantsTags = true;
|
||||
}
|
||||
|
||||
~RecordToFile()
|
||||
@@ -600,7 +601,7 @@ namespace LLError
|
||||
mFunctionString += std::string(mFunction) + ":";
|
||||
for (size_t i = 0; i < mTagCount; i++)
|
||||
{
|
||||
mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? "" : " ");
|
||||
mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? "" : ",");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -983,13 +984,19 @@ namespace
|
||||
}
|
||||
|
||||
if (show_level && r->wantsLevel())
|
||||
{
|
||||
message_stream << site.mLevelString << " ";
|
||||
}
|
||||
{
|
||||
message_stream << site.mLevelString;
|
||||
}
|
||||
|
||||
if (show_tags && r->wantsTags())
|
||||
{
|
||||
message_stream << site.mTagString << " ";
|
||||
message_stream << site.mTagString;
|
||||
}
|
||||
|
||||
if ((show_level && r->wantsLevel())||
|
||||
(show_tags && r->wantsTags()))
|
||||
{
|
||||
message_stream << " ";
|
||||
}
|
||||
|
||||
if (show_function && r->wantsFunctionName())
|
||||
|
||||
Reference in New Issue
Block a user