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've called GlobalCrashHandler.Configure();, and was expecting to see full details of unhandled exceptions logged - including the stack trace of where the Exception was raised. However, all I'm getting is the Exception message.
Is this a known problem, or do I need to do something different/more?
The text was updated successfully, but these errors were encountered:
The GlobalCrashHandler uses the Application.UnhandledException event, which provides very limited information. From the documentation:
A notable limitation is that the UnhandledException event arguments don’t contain as much detail as the original exception as propagated from app code. Whenever possible, if the app requires specific processing of a certain exception, it’s always better to catch the exception as it propagates, because more detail will be available then.
I've called
GlobalCrashHandler.Configure();
, and was expecting to see full details of unhandled exceptions logged - including the stack trace of where the Exception was raised. However, all I'm getting is the Exception message.Is this a known problem, or do I need to do something different/more?
The text was updated successfully, but these errors were encountered: