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
// Use the ToExceptionless extension method to submit this handled exception to Exceptionless using the default client instance (ExceptionlessClient.Default).
38
+
// This works and is convenient, but its generally not recommended to use static singleton instances because it makes testing and
39
+
// other things harder.
40
+
handledException.ToExceptionless().Submit();
41
+
}
42
+
33
43
// Unhandled exceptions will get reported since called UseExceptionless in the Startup.cs which registers a listener for unhandled exceptions.
0 commit comments