You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an application with custom ApplicationError class that captures Thread.callStackSymbols in init.
I want this stack to be used when notifying Bugsnag about the error to override default call stack:
class ApplicationError:LocalizedError{
message: String
stack:[String]
init(_ message:String){self.message = message
self.stack =Thread.callStackSymbols
}}func notify(error:ApplicationError){Bugsnag.notify(error){ event in
event.stack = error.stack
}}
Please add the feature.
The text was updated successfully, but these errors were encountered:
I have an application with custom
ApplicationError
class that capturesThread.callStackSymbols
ininit
.I want this stack to be used when notifying Bugsnag about the error to override default call stack:
Please add the feature.
The text was updated successfully, but these errors were encountered: