From 9301d3e7f0b2fa4dc46572a5b3303a4c65c98229 Mon Sep 17 00:00:00 2001 From: Richa Bansal Date: Tue, 11 Apr 2023 12:09:22 -0700 Subject: [PATCH] Update serverity to Warning to be consistent --- .../Features/Storage/SqlServerFhirDataStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs b/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs index 3a4db901de..2b58566f60 100644 --- a/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs +++ b/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs @@ -429,7 +429,7 @@ private async Task 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.