diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index 9bad47f12d809362e938feffb89674e354ace308..13c80d22fe9340505481cf50e850ad6131aa4975 100755
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -218,7 +218,7 @@ void LLCrashLogger::gatherFiles()
 	{
 		// Figure out the filename of the second life log
 		LLCurl::setCAFile(gDirUtilp->getCAFile());
-		mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.old");
+		mFileMap["SecondLifeLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"SecondLife.log");
 		mFileMap["SettingsXml"] = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS,"settings.xml");
 	}
 
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index d2e4136b9bf1d803cd5aa3cfb8ef81e0b238b0ad..817ae9e2d27ea5c62f31aea3820ccfa5d733df7b 100755
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -725,6 +725,13 @@ LLAppViewer::~LLAppViewer()
 	
 	destroyMainloopTimeout();
 
+#if !LL_WINDOWS
+    //Last thing, let's copy SL.log into the per-run directory.   We don't care if this operation fails.
+    std::string per_run_log = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"SecondLife.log");
+    std::string current_log = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.log");
+    LLFile::copy(per_run_log, current_log);
+#endif
+    
 	// If we got to this destructor somehow, the app didn't hang.
 	removeMarkerFiles();
 }
diff --git a/indra/win_crash_logger/llcrashloggerwindows.cpp b/indra/win_crash_logger/llcrashloggerwindows.cpp
index e3356f90ba602eb1798e8f015fedf82a0e1931a5..0e683c82bde605fb073a6dbbd927a75b1e5dcf85 100644
--- a/indra/win_crash_logger/llcrashloggerwindows.cpp
+++ b/indra/win_crash_logger/llcrashloggerwindows.cpp
@@ -319,7 +319,11 @@ int LLCrashLoggerWindows::processingLoop() {
     }
     
     llinfos << "session ending.." << llendl;
-        
+    
+    LLSD options = getOptionData( LLApp::PRIORITY_COMMAND_LINE );
+    std::string per_run_file = options["dumpdir"].asString() + "SecondLife.log";
+    std::string log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.log");
+    LLFile::copy(per_run_file, log_file);
 	return 0;
 }