Skip to content

Commit

Permalink
Remove redundant filter name in log
Browse files Browse the repository at this point in the history
  • Loading branch information
david-marconis committed Jan 27, 2025
1 parent d62bbc1 commit 4017478
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,7 @@ private TEvent[] FilterEvents(TEvent[] events, string subscriptionUri)
);
if (filter != null)
{
this._logger.LogInformation(
"Filtering events for {Subscription} based on filter: {Filter}",
subscriptionUri,
filter
);
this._logger.LogInformation("Filtering events based on filter: {Filter}", filter);
return this.FilterEvents(events, filter);
}

Expand Down

0 comments on commit 4017478

Please sign in to comment.