mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-19 17:39:50 -04:00
add the crashed thread to windows crashlogs
This commit is contained in:
parent
798cacc1a8
commit
f84e8660cb
1 changed files with 4 additions and 0 deletions
|
@ -282,6 +282,10 @@ static std::string getInfo(LPEXCEPTION_POINTERS info, Mod* faultyMod) {
|
|||
<< "\n"
|
||||
<< "Number Parameters: " << info->ExceptionRecord->NumberParameters << "\n";
|
||||
}
|
||||
|
||||
// show the thread that crashed
|
||||
stream << "Crashed thread: " << utils::thread::getName() << "\n";
|
||||
|
||||
return stream.str();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue