diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp index 5e7471550063aa2a981e6b19f5e2cab2d403e12c..cf14ae36a59de16e93bee56e1796a4e54d3e05ae 100644 --- a/indra/llcrashlogger/llcrashlogger.cpp +++ b/indra/llcrashlogger/llcrashlogger.cpp @@ -256,13 +256,13 @@ void LLCrashLogger::gatherFiles() LLCore::HttpRequest::setStaticPolicyOption(LLCore::HttpRequest::PO_CA_FILE, LLCore::HttpRequest::GLOBAL_POLICY_ID, gDirUtilp->getCAFile(), NULL); - mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"SecondLife.log"); + mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"Alchemy.log"); mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml"); } if (!gDirUtilp->fileExists(mFileMap["SecondLifeLog"]) ) //We would prefer to get this from the per-run but here's our fallback. { - mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.old"); + mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Alchemy.old"); } gatherPlatformSpecificFiles(); @@ -450,7 +450,7 @@ bool LLCrashLogger::sendCrashLog(std::string dump_dir) gDirUtilp->setDumpDir( dump_dir ); std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, - "SecondLifeCrashReport"); + "AlchemyCrashReport"); std::string report_file = dump_path + ".log"; LL_DEBUGS("CRASHREPORT") << "sending " << report_file << LL_ENDL; diff --git a/indra/llui/llviewereventrecorder.cpp b/indra/llui/llviewereventrecorder.cpp index 755edd4b49584e96405726a7dd62ea30e1e38e76..bcac360ea34c5af2f36017de4f6947ee39032598 100644 --- a/indra/llui/llviewereventrecorder.cpp +++ b/indra/llui/llviewereventrecorder.cpp @@ -34,11 +34,11 @@ LLViewerEventRecorder::LLViewerEventRecorder() { clear(UNDEFINED); // Remove any previous event log file - std::string old_log_ui_events_to_llsd_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "SecondLife_Events_log.old"); + std::string old_log_ui_events_to_llsd_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "Alchemy_Events_log.old"); LLFile::remove(old_log_ui_events_to_llsd_file, ENOENT); - mLogFilename = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "SecondLife_Events_log.llsd"); + mLogFilename = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "Alchemy_Events_log.llsd"); LLFile::rename(mLogFilename, old_log_ui_events_to_llsd_file, ENOENT); } diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 86259ebe723cd71183e92fe0eb1e50da911c1a46..0537e3b120c82e64f5ae066cd4c0f2bd24b66c78 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -373,11 +373,11 @@ BOOL gSimulateMemLeak = FALSE; // Internal globals... that should be removed. static std::string gArgs; const int MAX_MARKER_LENGTH = 1024; -const std::string MARKER_FILE_NAME("SecondLife.exec_marker"); -const std::string START_MARKER_FILE_NAME("SecondLife.start_marker"); -const std::string ERROR_MARKER_FILE_NAME("SecondLife.error_marker"); -const std::string LLERROR_MARKER_FILE_NAME("SecondLife.llerror_marker"); -const std::string LOGOUT_MARKER_FILE_NAME("SecondLife.logout_marker"); +const std::string MARKER_FILE_NAME("Alchemy.exec_marker"); +const std::string START_MARKER_FILE_NAME("Alchemy.start_marker"); +const std::string ERROR_MARKER_FILE_NAME("Alchemy.error_marker"); +const std::string LLERROR_MARKER_FILE_NAME("Alchemy.llerror_marker"); +const std::string LOGOUT_MARKER_FILE_NAME("Alchemy.logout_marker"); static BOOL gDoDisconnect = FALSE; static std::string gLaunchFileOnQuit; @@ -2250,12 +2250,12 @@ void LLAppViewer::initLoggingAndGetLastDuration() // Remove the last ".old" log file. std::string old_log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, - "SecondLife.old"); + "Alchemy.old"); LLFile::remove(old_log_file); // Get name of the log file std::string log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, - "SecondLife.log"); + "Alchemy.log"); /* * Before touching any log files, compute the duration of the last run * by comparing the ctime of the previous start marker file with the ctime @@ -3458,10 +3458,10 @@ void LLAppViewer::writeSystemInfo() gDebugInfo["Dynamic"] = LLSD::emptyMap(); #if LL_WINDOWS - gDebugInfo["SLLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"SecondLife.log"); + gDebugInfo["SLLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"Alchemy.log"); #else //Not ideal but sufficient for good reporting. - gDebugInfo["SLLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.old"); //LLError::logFileName(); + gDebugInfo["SLLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Alchemy.old"); //LLError::logFileName(); #endif gDebugInfo["ClientInfo"]["Name"] = LLVersionInfo::getChannel(); diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 3c210b73ae3c7c890adace2440d4c3808f78479c..5bd7459cd7ae08615344f22ca076ceb833f3fc78 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -121,7 +121,7 @@ namespace // send the main viewer log file // widen to wstring, convert to __wchar_t, then pass c_str() sBugSplatSender->sendAdditionalFile( - WCSTR(gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "SecondLife.log"))); + WCSTR(gDirUtilp->getExpandedFilename(LL_PATH_LOGS, "Alchemy.log"))); sBugSplatSender->sendAdditionalFile( WCSTR(gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, "settings.xml"))); diff --git a/indra/newview/llwindebug.cpp b/indra/newview/llwindebug.cpp index 92c80ce53412f744d83ae4c66922eb01d528e7c2..d489596b273d1266d12e71843bcb4ef4db14c4df 100644 --- a/indra/newview/llwindebug.cpp +++ b/indra/newview/llwindebug.cpp @@ -185,7 +185,7 @@ void LLWinDebug::writeDumpToFile(MINIDUMP_TYPE type, MINIDUMP_EXCEPTION_INFORMAT void LLWinDebug::generateMinidump(struct _EXCEPTION_POINTERS *exception_infop) { std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, - "SecondLifeException"); + "AlchemyException"); if (exception_infop) { // Since there is exception info... Release the hounds. @@ -196,6 +196,6 @@ void LLWinDebug::generateMinidump(struct _EXCEPTION_POINTERS *exception_infop) ExInfo.ThreadId = ::GetCurrentThreadId(); ExInfo.ExceptionPointers = exception_infop; ExInfo.ClientPointers = NULL; - writeDumpToFile((MINIDUMP_TYPE)(MiniDumpWithDataSegs | MiniDumpWithIndirectlyReferencedMemory), &ExInfo, "SecondLife.dmp"); + writeDumpToFile((MINIDUMP_TYPE)(MiniDumpWithDataSegs | MiniDumpWithIndirectlyReferencedMemory), &ExInfo, "Alchemy.dmp"); } } diff --git a/indra/win_crash_logger/llcrashloggerwindows.cpp b/indra/win_crash_logger/llcrashloggerwindows.cpp index 267224a79bfe4b7ab4282081be0b7688198357aa..859ecc903a4a5a5c65bc1666a3fd6f4b34f5687e 100644 --- a/indra/win_crash_logger/llcrashloggerwindows.cpp +++ b/indra/win_crash_logger/llcrashloggerwindows.cpp @@ -306,7 +306,7 @@ int LLCrashLoggerWindows::processingLoop() { std::string per_run_dir = options["dumpdir"].asString(); std::string per_run_file = per_run_dir + "\\SecondLife.log"; - std::string log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.log"); + std::string log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"Alchemy.log"); if (gDirUtilp->fileExists(per_run_dir)) {