/// <summary> /// The handler called when an exception is explicitly signaled. /// </summary> protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args) { using (args.Exception.TryScopeCallerInfo(args.CallerInfo)) LogException(args.Exception, args.Context); }
/// <summary> /// The handler called when an exception is explicitly signaled. /// </summary> protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args) { LogException(args.Exception, args.Context); }
/// <summary> /// The handler called when an exception is explicitly signaled. /// </summary> protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args) { OnError(args.Exception, args.Context, args.ApplicationName); }