diff options
| author | Aura Linden <aura@lindenlab.com> | 2014-03-25 18:30:39 -0700 | 
|---|---|---|
| committer | Aura Linden <aura@lindenlab.com> | 2014-03-25 18:30:39 -0700 | 
| commit | 5b7929364b53ed1e4798ff4c7904014b6f423c0c (patch) | |
| tree | 3f1c5ac86fa42c9f10ced7847599c38b22beed7a /indra/newview | |
| parent | fdb65d2c28b5256d0442a2ab4499d04d91ecc96e (diff) | |
Still wasn't doing the right thing with log files.
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llappviewer.cpp | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 817ae9e2d2..2015876120 100755 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -727,9 +727,16 @@ LLAppViewer::~LLAppViewer()  #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); +	std::string per_run_dir = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,""); +	std::string per_run_file = per_run_dir + "SecondLife.log"; +    std::string log_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"SecondLife.log"); + +	if (gDirUtilp->fileExists(per_run_dir))   +	{ +		LL_INFOS ("CrashReporting") << "Copying " << log_file << " to " << per_run_file << llendl; +	    LLFile::copy(log_file, per_run_file); +	} +  #endif  	// If we got to this destructor somehow, the app didn't hang. @@ -3471,7 +3478,7 @@ void LLAppViewer::writeSystemInfo()      if (! gDebugInfo.has("Dynamic") )          gDebugInfo["Dynamic"] = LLSD::emptyMap(); -	gDebugInfo["SLLog"] = LLError::logFileName(); +	gDebugInfo["SLLog"] = gDirUtilp->getExpandedFilename(LL_PATH_DUMP,"SecondLife.log"); //LLError::logFileName();  	gDebugInfo["ClientInfo"]["Name"] = LLVersionInfo::getChannel();  	gDebugInfo["ClientInfo"]["MajorVersion"] = LLVersionInfo::getMajor(); | 
