Add newline before cluster info log (#5671)

This commit is contained in:
Michael Vines
2019-08-27 08:33:48 -07:00
committed by GitHub
parent 8e6e72babd
commit a29f0484dc

View File

@ -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;
}