diff options
author | Oz Linden <oz@lindenlab.com> | 2018-09-19 11:27:45 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2018-09-19 11:27:45 -0400 |
commit | a9b3c67534fab6444961ce3a564a9be0884f28df (patch) | |
tree | 5194ed9388dffd3c130836798cced5c99181421b /indra/llcommon/llerror.cpp | |
parent | 78a8cc0976955d22b70b41c1696864323ff2a19e (diff) |
remove unused control flags in internal logging method
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r-- | indra/llcommon/llerror.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 06c7aef8ab..64288e114b 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -944,7 +944,7 @@ namespace } } - void writeToRecorders(const LLError::CallSite& site, const std::string& escaped_message, bool show_location = true, bool show_time = true, bool show_tags = true, bool show_level = true, bool show_function = true) + void writeToRecorders(const LLError::CallSite& site, const std::string& escaped_message) { LLError::ELevel level = site.mLevel; LLError::SettingsConfigPtr s = LLError::Settings::getInstance()->getSettingsConfig(); @@ -963,7 +963,7 @@ namespace } message_stream << " "; - if (show_level && r->wantsLevel()) + if (r->wantsLevel()) { message_stream << site.mLevelString; } @@ -981,7 +981,7 @@ namespace } message_stream << " "; - if (show_function && r->wantsFunctionName()) + if (r->wantsFunctionName()) { message_stream << site.mFunctionString; } |