Use commas to make a log message more readable

This commit is contained in:
Michael Vines 2020-01-06 13:50:56 -07:00
parent 8dad3af36d
commit 9720c894f1
1 changed files with 1 additions and 1 deletions

View File

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