Skip to content

Commit

Permalink
Code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla committed Jul 28, 2023
1 parent a5d7e64 commit 62d007d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ public void EnrichmentException(string handlerName, string eventName, string ope
[Event(5, Message = "Unknown error processing event '{1}' from handler '{0}', Exception: {2}", Level = EventLevel.Error)]
public void UnknownErrorProcessingEvent(string handlerName, string eventName, string ex)
{
this.WriteEvent(2, handlerName, eventName, ex);
this.WriteEvent(5, handlerName, eventName, ex);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ public void EnrichmentException(string exception)
[Event(3, Message = "Unknown error processing event '{1}' from handler '{0}', Exception: {2}", Level = EventLevel.Error)]
public void UnknownErrorProcessingEvent(string handlerName, string eventName, string ex)
{
this.WriteEvent(2, handlerName, eventName, ex);
this.WriteEvent(3, handlerName, eventName, ex);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ public void RequestIsFilteredOut(string eventName)
[Event(7, Message = "Unknown error processing event '{1}' from handler '{0}', Exception: {2}", Level = EventLevel.Error)]
public void UnknownErrorProcessingEvent(string handlerName, string eventName, string ex)
{
this.WriteEvent(2, handlerName, eventName, ex);
this.WriteEvent(7, handlerName, eventName, ex);
}
}

0 comments on commit 62d007d

Please sign in to comment.