diff options
author | Oz Linden <oz@lindenlab.com> | 2018-10-11 14:17:52 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2018-10-11 14:17:52 -0400 |
commit | d87cc1859f3f96b98a627fdc674e297e78438681 (patch) | |
tree | c1bfc965965516d485444344a587cf8b93864c92 /indra/llcommon/llerrorcontrol.h | |
parent | 886da87c43447040afbafa6628e158e66965141d (diff) |
Modify logging so that the in-viewer console and stderr do not escape line breaks
Improve the implementation so that escaping is computed only once
Diffstat (limited to 'indra/llcommon/llerrorcontrol.h')
-rw-r--r-- | indra/llcommon/llerrorcontrol.h | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/indra/llcommon/llerrorcontrol.h b/indra/llcommon/llerrorcontrol.h index ddbcdc94a0..a6278b3e50 100644 --- a/indra/llcommon/llerrorcontrol.h +++ b/indra/llcommon/llerrorcontrol.h @@ -148,13 +148,22 @@ namespace LLError bool wantsLevel(); bool wantsLocation(); bool wantsFunctionName(); + bool wantsMultiline(); + + void showTime(bool show); + void showTags(bool show); + void showLevel(bool show); + void showLocation(bool show); + void showFunctionName(bool show); + void showMultiline(bool show); protected: - bool mWantsTime, - mWantsTags, - mWantsLevel, - mWantsLocation, - mWantsFunctionName; + bool mWantsTime; + bool mWantsTags; + bool mWantsLevel; + bool mWantsLocation; + bool mWantsFunctionName; + bool mWantsMultiline; }; typedef boost::shared_ptr<Recorder> RecorderPtr; |