diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-02-13 23:19:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 23:19:08 +0100 |
commit | 0fa9573decbf9b6137d47af45144641840de0b36 (patch) | |
tree | 26cd1509b15c02a6727944fe07d6aad82e03ce9b | |
parent | a21193ac96331267da256d5aa41039a4d452b7a4 (diff) | |
download | FlightCore-0fa9573decbf9b6137d47af45144641840de0b36.tar.gz FlightCore-0fa9573decbf9b6137d47af45144641840de0b36.zip |
feat: Better stacktrace in Sentry dashboard (#175)
Enable attaching stacktrace to see the function in which the crash
happened.
-rw-r--r-- | src-tauri/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index ba9264ee..63b30e9e 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -47,6 +47,7 @@ fn main() { "https://f833732deb2240b0b2dc4abce97d0f1d@o1374052.ingest.sentry.io/6692177", sentry::ClientOptions { release: sentry::release_name!(), + attach_stacktrace: true, ..Default::default() }, )); |