diff options
author | Oz Linden <oz@lindenlab.com> | 2012-06-24 07:27:34 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-06-24 07:27:34 -0400 |
commit | f92e7d30a8ae4b1017968c253bb90f5eb05e1725 (patch) | |
tree | 6fb402c32570e911b79e19c9a131b5e335b7ef18 /indra/llcommon/llerror.cpp | |
parent | fb1fa8434a1a84105f67e72fdf72d300be2951bb (diff) |
Add logging during tests (debug level, to test-specific files)
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r-- | indra/llcommon/llerror.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index e4381dbbd6..5701e73b05 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -534,7 +534,7 @@ namespace } - void commonInit(const std::string& dir) + void commonInit(const std::string& dir, bool log_to_stderr = true) { LLError::Settings::reset(); @@ -542,7 +542,8 @@ namespace LLError::setFatalFunction(LLError::crashAndLoop); LLError::setTimeFunction(LLError::utcTime); - if (shouldLogToStderr()) + // log_to_stderr is only false in the unit and integration tests to keep builds quieter + if (log_to_stderr && shouldLogToStderr()) { LLError::addRecorder(new RecordToStderr(stderrLogWantsTime())); } @@ -580,9 +581,9 @@ namespace LLError #endif } - void initForApplication(const std::string& dir) + void initForApplication(const std::string& dir, bool log_to_stderr) { - commonInit(dir); + commonInit(dir, log_to_stderr); } void setPrintLocation(bool print) |