diff options
author | Rick Pasetto <rick@lindenlab.com> | 2009-10-13 20:12:52 -0700 |
---|---|---|
committer | Rick Pasetto <rick@lindenlab.com> | 2009-10-13 20:12:52 -0700 |
commit | 2aff213501eb366f32a048150fc81726beba4e6e (patch) | |
tree | 225b0844a2466af339799779b499022c49523cae | |
parent | 628e10b08008c578512687a687439108bebeb7b7 (diff) |
Fix signature of LLError::setTagLevel()
-rw-r--r-- | indra/llcommon/llerrorcontrol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerrorcontrol.h b/indra/llcommon/llerrorcontrol.h index e069232798..233e9d3389 100644 --- a/indra/llcommon/llerrorcontrol.h +++ b/indra/llcommon/llerrorcontrol.h @@ -84,7 +84,7 @@ namespace LLError 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); - void setTagLevel(const std::string& file_name, LLError::ELevel); + LL_COMMON_API void setTagLevel(const std::string& file_name, LLError::ELevel); LL_COMMON_API void configure(const LLSD&); // the LLSD can configure all of the settings |