summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2017-03-09 14:16:33 -0500
committerOz Linden <oz@lindenlab.com>2017-03-09 14:16:33 -0500
commite479d51068e1b9d8c840b263f41d6fe79aee717c (patch)
treeca4a918e4a4b4ad19fafeb341bb19b6175240fbb /indra/llcommon
parentb878f3362973a96fdebaed71b1e6bcfd98f56246 (diff)
experiment reformatting of tags in log lines
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llerror.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index 2fe9775e10..02d920b581 100644
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -571,8 +571,9 @@ namespace LLError
mFunctionString += std::string(mFunction) + ":";
for (size_t i = 0; i < mTagCount; i++)
{
- mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? "" : ",");
+ mTagString += mTags[i] + ((i == mTagCount - 1) ? "" : ",");
}
+ mTagString += std::string("#");
}
CallSite::~CallSite()