-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhanced Stack Frames with Native AOT #3323
Comments
Just for my understanding - and to help prioritizing this, is this just about cleaning up the check? Or would we actually get better stack frames? |
If we can get Ben.Demystifier working with AOT, we should get better stack frames yes... that code above could be changed to: var frames = (_options.StackTraceMode == StackTraceMode.Enhanced)
? EnhancedStackTrace.GetFrames(stackTrace).Select(p => new RealStackFrame(p))
: stackTrace.GetFrames().Select(p => new RealStackFrame(p)); |
I'm failing to keep track of how to get there. Is #3230 the only missing part? |
Yes I think so. I added some detail to that issue as well. |
Continuing on from #3322 we need to implement Michal's other suggetions:
Finally we should be able to simplify this:
sentry-dotnet/src/Sentry/Internal/DebugStackTrace.cs
Lines 179 to 181 in 233e95b
Also note Vitek Karas' guidance from Discord:
The text was updated successfully, but these errors were encountered: