|
|
|
@ -329,12 +329,13 @@ int wrapApplication(int (*innerApplication)(int argc, char* argv[]), int argc, c
|
|
|
|
|
{
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
const std::string crashLogName = Misc::StringUtils::lowerCase(appName) + "-crash.dmp";
|
|
|
|
|
Crash::CrashCatcher crashy(argc, argv, Files::pathToUnicodeString(cfgMgr.getLogPath() / crashLogName));
|
|
|
|
|
Crash::CrashCatcher crashy(
|
|
|
|
|
argc, argv, Files::pathToUnicodeString(std::filesystem::temp_directory_path() / crashLogName));
|
|
|
|
|
#else
|
|
|
|
|
const std::string crashLogName = Misc::StringUtils::lowerCase(appName) + "-crash.log";
|
|
|
|
|
// install the crash handler as soon as possible. note that the log path
|
|
|
|
|
// does not depend on config being read.
|
|
|
|
|
crashCatcherInstall(argc, argv, Files::pathToUnicodeString(cfgMgr.getLogPath() / crashLogName));
|
|
|
|
|
// install the crash handler as soon as possible.
|
|
|
|
|
crashCatcherInstall(
|
|
|
|
|
argc, argv, Files::pathToUnicodeString(std::filesystem::temp_directory_path() / crashLogName));
|
|
|
|
|
#endif
|
|
|
|
|
ret = innerApplication(argc, argv);
|
|
|
|
|
}
|
|
|
|
|