X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fprinter.rs;h=519494ebb28cecdafb944f9f7639258f66aff4da;hb=4b5c0e910375d4173023eec2c16f3038891b03b8;hp=c7e902358009a935565211ad62cd57823f7b7652;hpb=c348304dc0286a2228fe6074e994c70e80cc1db7;p=dnsseed-rust diff --git a/src/printer.rs b/src/printer.rs index c7e9023..519494e 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -51,7 +51,7 @@ impl Printer { out.write_all(b"\nNode counts by status:\n").expect("stdout broken?"); for i in 0..AddressState::get_count() { - out.write_all(format!("{}: {}\n", AddressState::from_num(i).unwrap().to_str(), + out.write_all(format!("{:22}: {}\n", AddressState::from_num(i).unwrap().to_str(), store.get_node_count(AddressState::from_num(i).unwrap()) ).as_bytes()).expect("stdout broken?"); } @@ -77,7 +77,7 @@ impl Printer { out.write_all(b"\nRetry times (in seconds):\n").expect("stdout broken?"); for i in 0..AddressState::get_count() { out.write_all(format!( - "{} ({}): {}\n", AddressState::from_num(i).unwrap().to_str(), i, + "{:22} ({}): {}\n", AddressState::from_num(i).unwrap().to_str(), i, store.get_u64(U64Setting::RescanInterval(AddressState::from_num(i).unwrap())) ).as_bytes()).expect("stdout broken?"); }