From 5f11b39524dac8b2dea90a99bbebbcde67adf2f5 Mon Sep 17 00:00:00 2001 From: Daniil Tolstoukhov Date: Mon, 1 Jul 2024 20:55:42 +0400 Subject: [PATCH] Replace warn with error --- Cassandra.ThriftClient/Connections/ClusterConnection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cassandra.ThriftClient/Connections/ClusterConnection.cs b/Cassandra.ThriftClient/Connections/ClusterConnection.cs index dd7f490..13a79c6 100644 --- a/Cassandra.ThriftClient/Connections/ClusterConnection.cs +++ b/Cassandra.ThriftClient/Connections/ClusterConnection.cs @@ -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); }