summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorcallum_linden <none@none>2018-02-14 10:56:31 -0800
committercallum_linden <none@none>2018-02-14 10:56:31 -0800
commit08cb3fbe32b62ed3f53f68633ada9eab44dccb0b (patch)
treecaa4327b04a438978fd9bae207ea86269f1525b6 /indra/test
parentb2eb85df79f317d2b587c969178cea9b96c81213 (diff)
parent5510b589b136d354ce2975c45f41ccc7e66e9d21 (diff)
Automated merge with tip of viewer-release
Diffstat (limited to 'indra/test')
-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 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);