diff options
author | Rider Linden <rider@lindenlab.com> | 2018-02-26 09:29:38 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2018-02-26 09:29:38 -0800 |
commit | e2e63598d40109d01e0311ce1444d3feedffcf66 (patch) | |
tree | 167a7d41785623cea7d7b466b4b0554e80639a55 /indra/test/test.cpp | |
parent | b766466b3013e39831bcfcaef5d1089c07202afb (diff) | |
parent | 5510b589b136d354ce2975c45f41ccc7e66e9d21 (diff) |
Merge
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r-- | indra/test/test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp index 1c0317df1d..80c84d9bea 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -526,12 +526,12 @@ int main(int argc, char **argv) const char* LOGTEST = getenv("LOGTEST"); if (LOGTEST) { - LLError::initForApplication(".", true /* log to stderr */); + LLError::initForApplication(".", ".", true /* log to stderr */); LLError::setDefaultLevel(LLError::decodeLevel(LOGTEST)); } else { - LLError::initForApplication(".", false /* do not log to stderr */); + LLError::initForApplication(".", ".", false /* do not log to stderr */); LLError::setDefaultLevel(LLError::LEVEL_DEBUG); } LLError::setFatalFunction(wouldHaveCrashed); |