Skip to content

Commit

Permalink
Replace warn with error
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil Tolstoukhov committed Jul 1, 2024
1 parent 00482ed commit 5f11b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cassandra.ThriftClient/Connections/ClusterConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void WaitUntilSchemaAgreementIsReached(TimeSpan timeout)
commandExecutor.Execute(schemaAgreementCommand);
if (schemaAgreementCommand.Output.ContainsKey(unreachableVersion))
{
logger.Warn("Found unreachable version");
logger.Error("Found unreachable version");
LogVersions(schemaAgreementCommand.Output);
}

Expand Down

0 comments on commit 5f11b39

Please sign in to comment.