Skip to content

Commit b48fd18

Browse files
committed
Change log level of duplicate event reference id check.
1 parent 92690e3 commit b48fd18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exceptionless.Core/Plugins/EventProcessor/Default/05_CheckForDuplicateReferenceIdPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public override async Task EventProcessingAsync(EventContext context) {
2525
return;
2626
}
2727

28-
_logger.LogWarning("Discarding event due to duplicate reference id: {ReferenceId}", context.Event.ReferenceId);
28+
_logger.LogInformation("Discarding event due to duplicate reference id: {ReferenceId}", context.Event.ReferenceId);
2929
context.IsCancelled = true;
3030
}
3131

0 commit comments

Comments
 (0)