LogViewer.App.Application_DispatcherUnhandledException C# (CSharp) Method

Application_DispatcherUnhandledException() private method

private Application_DispatcherUnhandledException ( object sender, DispatcherUnhandledExceptionEventArgs e ) : void
sender object
e DispatcherUnhandledExceptionEventArgs
return void
        private void Application_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
        {
            e.Handled = false;
            _log.Error(e.Exception);
        }