summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorLynx Linden <lynx@lindenlab.com>2010-05-27 15:47:05 +0100
committerLynx Linden <lynx@lindenlab.com>2010-05-27 15:47:05 +0100
commitbd32a9c6efc5598711bfed9ff20d049878bc96a4 (patch)
tree417f2a6cd605b09009be3a57b73c578162473c9c /indra/newview
parent05761d785335f08dc176aa6ebb7f0cd45d1298ab (diff)
Don't try to add old stack trace files to the crash report.
Such as stack_trace.log on Linux or SecondLifeException.log on Win32.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewerlinux.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llappviewerlinux.cpp b/indra/newview/llappviewerlinux.cpp
index ba9a4e4a6e..78afdc8995 100644
--- a/indra/newview/llappviewerlinux.cpp
+++ b/indra/newview/llappviewerlinux.cpp
@@ -462,6 +462,8 @@ bool LLAppViewerLinux::beingDebugged()
bool LLAppViewerLinux::initLogging()
{
// Remove the last stack trace, if any
+ // This file is no longer created, since the move to Google Breakpad
+ // The code is left here to clean out any old state in the log dir
std::string old_stack_file =
gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"stack_trace.log");
LLFile::remove(old_stack_file);