mirror of
https://github.com/edubart/otclient.git
synced 2025-10-16 04:24:54 +02:00
Rename crash file
This commit is contained in:
@@ -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";
|
||||
|
@@ -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();
|
||||
|
Reference in New Issue
Block a user