diff options
author | Oz Linden <oz@lindenlab.com> | 2017-03-09 14:16:33 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-03-09 14:16:33 -0500 |
commit | e479d51068e1b9d8c840b263f41d6fe79aee717c (patch) | |
tree | ca4a918e4a4b4ad19fafeb341bb19b6175240fbb /indra/llcommon | |
parent | b878f3362973a96fdebaed71b1e6bcfd98f56246 (diff) |
experiment reformatting of tags in log lines
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llerror.cpp | 3 |
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() |