diff options
author | Jonathan Yap <none@none> | 2011-12-23 12:06:36 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2011-12-23 12:06:36 -0500 |
commit | 8a3aa3f6cac3da0ee962dac211580a7987a4fc31 (patch) | |
tree | bf747ffc1f564a6e7b292da062c7063b30b7427d /indra/llcommon | |
parent | 570d562f5871f40bd7f8c683db5316ffd0133335 (diff) |
STORM-1790 Provide a Develop sub-menu to change the default logging level
co-authored with Zi Ree
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llerror.cpp | 6 | ||||
-rw-r--r-- | indra/llcommon/llerrorcontrol.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index c35799bbb9..e4381dbbd6 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -617,6 +617,12 @@ namespace LLError s.defaultLevel = level; } + ELevel getDefaultLevel() + { + Settings& s = Settings::get(); + return s.defaultLevel; + } + void setFunctionLevel(const std::string& function_name, ELevel level) { Globals& g = Globals::get(); diff --git a/indra/llcommon/llerrorcontrol.h b/indra/llcommon/llerrorcontrol.h index fb75d45e2c..ed9de002f5 100644 --- a/indra/llcommon/llerrorcontrol.h +++ b/indra/llcommon/llerrorcontrol.h @@ -75,6 +75,7 @@ namespace LLError LL_COMMON_API void setPrintLocation(bool); LL_COMMON_API void setDefaultLevel(LLError::ELevel); + LL_COMMON_API ELevel getDefaultLevel(); LL_COMMON_API void setFunctionLevel(const std::string& function_name, LLError::ELevel); LL_COMMON_API void setClassLevel(const std::string& class_name, LLError::ELevel); LL_COMMON_API void setFileLevel(const std::string& file_name, LLError::ELevel); |