summaryrefslogtreecommitdiff
path: root/indra/llcrashlogger
diff options
context:
space:
mode:
authorAndrew A. de Laix <alain@lindenlab.com>2010-05-25 15:08:36 -0700
committerAndrew A. de Laix <alain@lindenlab.com>2010-05-25 15:08:36 -0700
commit6a39149fec72e3a105d7a47b8a9f5aa2a0bfba87 (patch)
treefec5a3eb58b624e28197bb8e03d4f32216cadbed /indra/llcrashlogger
parent5a52c5eb8a5cc4e1215911bac9121891dd802d45 (diff)
Added configuration setting to send crash reports to configured url rather than through the grid.
Diffstat (limited to 'indra/llcrashlogger')
-rwxr-xr-xindra/llcrashlogger/llcrashlogger.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index 9d777cd649..2ec7347db0 100755
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -200,7 +200,12 @@ void LLCrashLogger::gatherFiles()
gatherPlatformSpecificFiles();
//Use the debug log to reconstruct the URL to send the crash report to
- if(mDebugLog.has("CurrentSimHost"))
+ if(mDebugLog.has("CrashHostUrl"))
+ {
+ // Crash log receiver has been manually configured.
+ mCrashHost = mDebugLog["CrashHostUrl"].asString();
+ }
+ else if(mDebugLog.has("CurrentSimHost"))
{
mCrashHost = "https://";
mCrashHost += mDebugLog["CurrentSimHost"].asString();