diff options
Diffstat (limited to 'linden/indra/llcrashlogger/llcrashlogger.cpp')
-rwxr-xr-x | linden/indra/llcrashlogger/llcrashlogger.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp index b6afbc6..a399a48 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.cpp +++ b/linden/indra/llcrashlogger/llcrashlogger.cpp | |||
@@ -201,9 +201,9 @@ void LLCrashLogger::gatherFiles() | |||
201 | } | 201 | } |
202 | else | 202 | else |
203 | { | 203 | { |
204 | // Figure out the filename of the second life log | 204 | // Figure out the filename of the viewer log |
205 | LLCurl::setCAFile(gDirUtilp->getCAFile()); | 205 | LLCurl::setCAFile(gDirUtilp->getCAFile()); |
206 | mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Imprudence.log"); | 206 | mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.log"); |
207 | mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); | 207 | mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); |
208 | } | 208 | } |
209 | 209 | ||
@@ -335,7 +335,7 @@ bool LLCrashLogger::sendCrashLogs() | |||
335 | updateApplication("Sending reports..."); | 335 | updateApplication("Sending reports..."); |
336 | 336 | ||
337 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, | 337 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, |
338 | "ImprudenceCrashReport"); | 338 | "meta-impyCrashReport"); |
339 | std::string report_file = dump_path + ".log"; | 339 | std::string report_file = dump_path + ".log"; |
340 | 340 | ||
341 | std::ofstream out_file(report_file.c_str()); | 341 | std::ofstream out_file(report_file.c_str()); |
@@ -369,10 +369,10 @@ void LLCrashLogger::updateApplication(const std::string& message) | |||
369 | bool LLCrashLogger::init() | 369 | bool LLCrashLogger::init() |
370 | { | 370 | { |
371 | // We assume that all the logs we're looking for reside on the current drive | 371 | // We assume that all the logs we're looking for reside on the current drive |
372 | gDirUtilp->initAppDirs("Imprudence"); | 372 | gDirUtilp->initAppDirs("meta-impy"); |
373 | 373 | ||
374 | // Default to the product name "Imprudence" (this is overridden by the -name argument) | 374 | // Default to the product name "meta-impy" (this is overridden by the -name argument) |
375 | mProductName = "Imprudence"; | 375 | mProductName = "meta-impy"; |
376 | 376 | ||
377 | mCrashSettings.declareS32(CRASH_BEHAVIOR_SETTING, CRASH_BEHAVIOR_ASK, "Controls behavior when viewer crashes " | 377 | mCrashSettings.declareS32(CRASH_BEHAVIOR_SETTING, CRASH_BEHAVIOR_ASK, "Controls behavior when viewer crashes " |
378 | "(0 = ask before sending crash report, 1 = always send crash report, 2 = never send crash report)"); | 378 | "(0 = ask before sending crash report, 1 = always send crash report, 2 = never send crash report)"); |
@@ -393,7 +393,7 @@ bool LLCrashLogger::init() | |||
393 | //If we've opened the crash logger, assume we can delete the marker file if it exists | 393 | //If we've opened the crash logger, assume we can delete the marker file if it exists |
394 | if( gDirUtilp ) | 394 | if( gDirUtilp ) |
395 | { | 395 | { |
396 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Imprudence.exec_marker"); | 396 | std::string marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"meta-impy.exec_marker"); |
397 | LLAPRFile::remove( marker_file ); | 397 | LLAPRFile::remove( marker_file ); |
398 | } | 398 | } |
399 | 399 | ||