Use commas to make a log message more readable (#7696)

automerge
This commit is contained in:
mergify[bot]
2020-01-06 22:12:03 -08:00
committed by Grimes
parent 9ee2e768d6
commit b7fb050d09

View File

@ -968,7 +968,7 @@ impl AccountsDB {
oldest_slot = *slot; 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); total_count, newest_slot, oldest_slot, max_slot, max, min_slot, min);
datapoint_info!("accounts_db-stores", ("total_count", total_count, i64)); datapoint_info!("accounts_db-stores", ("total_count", total_count, i64));
} }