From 9720c894f101596b526046ad5051041a1ece4d15 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 6 Jan 2020 13:50:56 -0700 Subject: [PATCH] Use commas to make a log message more readable --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index a1260b47d4..22dc1bed7c 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -965,7 +965,7 @@ impl AccountsDB { oldest_slot = *slot; } } - info!("accounts_db: total_stores: {} newest_slot: {} oldest_slot: {} max_slot: {} (num={}) min_slot: {} (num={})", + info!("total_stores: {}, newest_slot: {}, oldest_slot: {}, max_slot: {} (num={}), min_slot: {} (num={})", total_count, newest_slot, oldest_slot, max_slot, max, min_slot, min); datapoint_info!("accounts_db-stores", ("total_count", total_count, i64)); }