Decreased log severity for failing to send test packet during healthcheck

This commit is contained in:
Jedrzej Stuczynski
2020-01-23 17:19:08 +00:00
parent d9ac85abb2
commit 4a2eab76e7
+1 -1
View File
@@ -223,7 +223,7 @@ impl PathChecker {
debug!("sending test packet to {}", first_node_address);
match first_node_client.send(packet, first_node_address).await {
Err(err) => {
warn!("failed to send packet to {} - {}", first_node_address, err);
info!("failed to send packet to {} - {}", first_node_address, err);
if self
.paths_status
.insert(path_identifier, PathStatus::Unhealthy)