Skip to content

Commit

Permalink
Update serverity to Warning to be consistent (#3223)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbans96 authored Apr 26, 2023
1 parent 50b1c3a commit a8c5dbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private async Task<UpsertOutcome> UpsertAsync(
{
case SqlErrorCodes.Conflict:
// someone else beat us to it, re-read and try comparing again - Compared resource was updated
_logger.LogInformation($"Conflict on {nameof(UpsertAsync)}. Trying again.");
_logger.LogWarning($"Conflict on {nameof(UpsertAsync)}. Trying again.");
continue;
default:
// Exceptions should only be logged as errors if they cannot be handled.
Expand Down

0 comments on commit a8c5dbf

Please sign in to comment.