Skip to content

Commit

Permalink
update schema validation to log as information (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnlycklama authored Mar 6, 2024
1 parent 66260c2 commit 606f57b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ await Policy.Handle<SchemaManagerException>()
retryCount: RetryAttempts,
sleepDurationProvider: retryCount => TimeSpan.FromSeconds(60),
onRetry: (exception, sleepDuration, retryCount, context) =>
_logger.LogWarning(exception, "Attempt {Attempt} of {MaxAttempts} of validating version compatiblity", retryCount, RetryAttempts))
_logger.LogInformation(exception, "Attempt {Attempt} of {MaxAttempts} of validating version compatiblity", retryCount, RetryAttempts))
.ExecuteAsync(t => ValidateVersionCompatibility(availableVersions[^1].Id, t), token)
.ConfigureAwait(false);

Expand Down

0 comments on commit 606f57b

Please sign in to comment.