Open ultimaweapon opened 1 year ago
We can have a log file of sorts. Warnings, errors, exceptions, all that.
That one we already have. Logging only tell roughly what going on but does not provide the exact location where the crash happened. With minidump we can see everything like variable value, stack trace, etc. #48 is the example case that minidump will be useful. If we have minidump we will know the root cause immediately.
We may use this library https://github.com/rust-minidump/minidump-writer.
So we can see the stack trace when user reporting an issue. We may also need to enable PDB file for the release build.