From 4a2eab76e70746d60af40ef82cbf6e5ecd2a92b1 Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Thu, 23 Jan 2020 17:19:08 +0000 Subject: [PATCH] Decreased log severity for failing to send test packet during healthcheck --- common/healthcheck/src/path_check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/healthcheck/src/path_check.rs b/common/healthcheck/src/path_check.rs index 62b94a86b1..42705b181d 100644 --- a/common/healthcheck/src/path_check.rs +++ b/common/healthcheck/src/path_check.rs @@ -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)