diff options
author | Oz Linden <oz@lindenlab.com> | 2017-06-20 17:03:20 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-06-20 17:03:20 -0400 |
commit | 347015be33559ca035e1b119d361423b906555db (patch) | |
tree | 8ee546e88f180a0b9bfaffc2ead9abf16c2b14c7 /indra | |
parent | 069dd355f90116b500065b40bfb36622be1faee5 (diff) |
fix presentation of log tags for better searchability
Diffstat (limited to 'indra')
-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 b66c3c3c20..a1ad9e84b5 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -569,12 +569,13 @@ namespace LLError } #endif mFunctionString += std::string(mFunction) + ":"; + const std::string tag_hash("#"); for (size_t i = 0; i < mTagCount; i++) { + mTagString.append(tag_hash); mTagString.append(mTags[i]); mTagString.append((i == mTagCount - 1) ? "" : ","); } - mTagString.append("#"); } CallSite::~CallSite() |