diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp
index d6dcde4b9fa26be5f298f602fc04321b9cd454fa..7ecb34eaf6cfba7eff13175ff5ccb0daba272b45 100644
--- a/indra/llcrashlogger/llcrashlogger.cpp
+++ b/indra/llcrashlogger/llcrashlogger.cpp
@@ -384,7 +384,7 @@ bool LLCrashLogger::init()
 	LLCurl::initClass(false);
 
 	// We assume that all the logs we're looking for reside on the current drive
-	gDirUtilp->initAppDirs("SecondLife");
+	gDirUtilp->initAppDirs("com.secondlife.indra.viewer");
 
 	LLError::initForApplication(gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, ""));
 
diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp
index 32d081d5524352301dab83357c12bedd7283ace9..bd5ce4acac42d9e207372c171ea3666c91c32c0b 100644
--- a/indra/llvfs/lldir.cpp
+++ b/indra/llvfs/lldir.cpp
@@ -431,6 +431,7 @@ std::string LLDir::getExpandedFilename(ELLPath location, const std::string& subd
 		llassert(0);
 	}
 
+    llinfos << "SPATTERS got " << prefix << " for location " << location << llendl;
 	std::string filename = in_filename;
 	if (!subdir2.empty())
 	{
@@ -471,7 +472,7 @@ std::string LLDir::getExpandedFilename(ELLPath location, const std::string& subd
 		expanded_filename.assign("");
 	}
 
-	//llinfos << "*** EXPANDED FILENAME: <" << expanded_filename << ">" << llendl;
+	llinfos << "*** EXPANDED FILENAME: <" << expanded_filename << ">" << llendl;
 	return expanded_filename;
 }
 
diff --git a/indra/mac_crash_logger/mac_crash_logger.cpp b/indra/mac_crash_logger/mac_crash_logger.cpp
index 4d0a7af27f87308d64708532cb03fe2b0d6b738a..5e6806c08ef068e66bde99a7b3f24030763e7e72 100644
--- a/indra/mac_crash_logger/mac_crash_logger.cpp
+++ b/indra/mac_crash_logger/mac_crash_logger.cpp
@@ -34,12 +34,6 @@
     
 int main(int argc, char **argv)
 {
-    std::ofstream outputFile;
-    outputFile.open("/tmp/aura.txt");
-    outputFile << "TEstiNG" << std::endl;
-    llinfos << "SPATTERS ASDFSDFSDF" << llendl;
-	llinfos << "Starting crash reporter." << llendl;
-
 	LLCrashLoggerMac app;
 	app.parseCommandOptions(argc, argv);
 
@@ -57,7 +51,5 @@ int main(int argc, char **argv)
 	app.cleanup();
 	llinfos << "Crash reporter finished normally." << llendl;
     
-    outputFile.close();
-    
 	return 0;
 }