Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Utkarsh Umesan Pillai <[email protected]>
  • Loading branch information
Kielek and utpilla authored Sep 20, 2023
1 parent 208ad85 commit f5c5c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ public void UnknownErrorProcessingEvent(string handlerName, string eventName, Ex
[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 @@ -67,6 +67,6 @@ public void UnknownErrorProcessingEvent(string handlerName, string eventName, Ex
[Event(4, 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(4, handlerName, eventName, ex);
}
}

0 comments on commit f5c5c2d

Please sign in to comment.