diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-05-25 15:08:36 -0700 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-05-25 15:08:36 -0700 |
commit | 6a39149fec72e3a105d7a47b8a9f5aa2a0bfba87 (patch) | |
tree | fec5a3eb58b624e28197bb8e03d4f32216cadbed /indra/newview/llappviewer.cpp | |
parent | 5a52c5eb8a5cc4e1215911bac9121891dd802d45 (diff) |
Added configuration setting to send crash reports to configured url rather than through the grid.
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 418b587321..7cdd8ca309 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2545,6 +2545,13 @@ void LLAppViewer::handleViewerCrash() } pApp->mReportedCrash = TRUE; + // Insert crash host url (url to post crash log to) if configured. + std::string crashHostUrl = gSavedSettings.get<std::string>("CrashHostUrl"); + if(crashHostUrl != "") + { + gDebugInfo["CrashHostUrl"] = crashHostUrl; + } + //We already do this in writeSystemInfo(), but we do it again here to make /sure/ we have a version //to check against no matter what gDebugInfo["ClientInfo"]["Name"] = gSavedSettings.getString("VersionChannelName"); |