summaryrefslogtreecommitdiff
path: root/indra/test/test.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2017-02-27 09:52:50 -0500
committerOz Linden <oz@lindenlab.com>2017-02-27 09:52:50 -0500
commit0a7fd3686a09a53ebe86e1e37b156e2f04f6cb2f (patch)
tree179e938b5a0825bb97af2e9480c7356c23ed7528 /indra/test/test.cpp
parent12e23a3cb8aadfc74f2ba469c671df51552c557b (diff)
Look for logcontrol-dev.xml in the user settings directory
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r--indra/test/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp
index e42374d56b..83b22c9011 100644
--- a/indra/test/test.cpp
+++ b/indra/test/test.cpp
@@ -525,12 +525,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);