diff --git a/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs b/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs index 9eff584cbb..de88a053eb 100644 --- a/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs +++ b/src/Microsoft.Health.Fhir.SqlServer/Features/Storage/SqlServerFhirDataStore.cs @@ -956,8 +956,8 @@ private string GetJsonValue(string json, string propName, bool isExisting) var startIndex = json.IndexOf($"\"{propName}\":\"", StringComparison.Ordinal); if (startIndex == -1) { - // I think this should be a warning because it happens every time a resource is deleted. Maybe even info. - _logger.LogWarning($"Cannot parse {propName} value from {(isExisting ? "existing" : "input")}"); + // This happens during normal operations (e.g., resource deletion) and is not an error condition. + _logger.LogInformation($"Cannot parse {propName} value from {(isExisting ? "existing" : "input")}"); return string.Empty; } @@ -965,7 +965,7 @@ private string GetJsonValue(string json, string propName, bool isExisting) var endIndex = json.IndexOf('"', startIndex); if (endIndex == -1) { - _logger.LogWarning($"Cannot parse {propName} value from {(isExisting ? "existing" : "input")}"); + _logger.LogInformation($"Cannot parse {propName} value from {(isExisting ? "existing" : "input")}"); return string.Empty; }