Jeff Gardner
Jeff Gardner
Here are the two debug outputs, one without the `--delete` option and one with the `--delete` option. In this case the two prefixes are identical but the sync command copies/deletes...
@RyanFitzSimmonsAK Could you share some more information about the decision to disable the sync command for directory buckets entirely? This is useful functionality that would be nice to keep, provided...
Correction: it's actually not commenting the `.plugin(sentry_tauri::plugin())` line that fixes it, this one is the only one that needs to be commented: `let _guard = sentry_tauri::minidump::init(&client);` I am using: `sentry-tauri...
Thanks @timfish! For now I've removed the `_guard` line and it seems to still publish to sentry, can you comment on the implications of that line being missing?
FYI I had commented out that `_guard` line and haven't been too worried about it, but today I had an issue in my app that was causing crashes and nothing...
Update: the reason the Rust panic wasn't getting reported was because I was doing this: `let _ = sentry::init(( ...` instead of this: `let _client = sentry::init(( ...` When I...