Rename crash file

This commit is contained in:
Eduardo Bart 2012-06-24 08:29:42 -03:00
parent 39403e612f
commit dbf5e8266b
3 changed files with 6 additions and 3 deletions

3
.gitignore vendored
View File

@ -17,6 +17,9 @@ Makefile
*~
*.kate-swap
CMakeLists.txt.user*
items.xml
items.otb
*.log
/modules/myconfig.otml
/modules/myotclientrc.lua
!.gitignore

View File

@ -104,7 +104,7 @@ void crashHandler(int signum, siginfo_t* info, void* secret)
g_logger.info(ss.str());
std::string fileName = "crash_report.txt";
std::string fileName = "crash_report.log";
std::ofstream fout(fileName.c_str(), std::ios::out | std::ios::app);
if(fout.is_open() && fout.good()) {
fout << "== application crashed\n";

View File

@ -128,10 +128,10 @@ LONG CALLBACK ExceptionHandler(LPEXCEPTION_POINTERS e)
// print in stdout
g_logger.info(ss.str());
// write stacktrace to crash_report.txt
// write stacktrace to crashreport.log
char dir[MAX_PATH];
GetCurrentDirectory(sizeof(dir) - 1, dir);
std::string fileName = stdext::format("%s\\crash_report.txt", dir);
std::string fileName = stdext::format("%s\\crashreport.log", dir);
std::ofstream fout(fileName.c_str(), std::ios::out | std::ios::app);
if(fout.is_open() && fout.good()) {
fout << ss.str();