Ivan Dlugos

Results 297 comments of Ivan Dlugos

> After [some testing](https://github.com/getsentry/sentry-dart/tree/vaind/profiling-experiments?rgh-link-date=2023-07-20T19%3A12%3A23Z), It seems like the native profiler could be the way to go, at least for iOS and macOS. However, I'm having issues with the symbolication -...

and the third one, IMO safer for long term maintenance, would be to update the flutter tool to include the dSYM together with the rest of the build output. The...

The additional issue with symbolication on iOS I'm having trouble with is: While symbolication works reasonable well, one function I've devised to actually produce a lot of load is getting...

> SentryStackFrame#absPath cus we strip the path to the last segment due to PII. Just wanted to say paths to source files/debug files aren't considered PII in other SDKs, AFAICT....

For completeness, copy-pasting our conversation from Discord TLDR; * we need a "debug id" that would be stored during app build in dart code and sent over when reporting frames...

runtime parsing can also be improved, currently (dart2wasm used in tests and introduced in #2113) we get this: ```json { event_id: dd5764b21ef04faa84c5c9c4a4e54447, timestamp: 2024-06-20T17: 43: 53.646Z, platform: other, user: {...

Yes you can. Yet again, shouldn't the default at least print warnings and errors, if any occur? As is, it won't print anything unless you set `Debug` in which case...

Actually, no, you cannot set a diagnostic logger. https://github.com/getsentry/sentry-dotnet/blob/6274944d00826b0442d038f675f4f46ac0fec182/src/Sentry/SentryOptions.cs#L651-L653 Can we just remove the need to set Debug for DiagnosticLogger to work at all?

Yes, pretty much.

> So SentryOptions.Debug is a bit redundant... although lots of customers will definitely know about it so if we do phase it out, probably need to mark it as Obsolete...