From 9c90e29a00c64487f23ce2b0e16450f533ee6eb2 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2019 08:36:57 -0700 Subject: [PATCH] Add newline before cluster info log (#5671) (#5673) (cherry picked from commit a29f0484dcbdef36b8f08237fef6f1d847a99a1a) --- core/src/cluster_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/cluster_info.rs b/core/src/cluster_info.rs index c0c5f87239..85dc7a26eb 100644 --- a/core/src/cluster_info.rs +++ b/core/src/cluster_info.rs @@ -1004,7 +1004,7 @@ impl ClusterInfo { let start = timestamp(); if start - last_contact_info_trace > 10000 { // Log contact info every 10 seconds - info!("{}", obj.read().unwrap().contact_info_trace()); + info!("\n{}", obj.read().unwrap().contact_info_trace()); last_contact_info_trace = start; }