From 191c6221b45032e323ed43d12c9b323b874bc1b6 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Fri, 20 Aug 2021 13:23:25 +0200 Subject: [PATCH] Print human readable card name. --- card-functionality/src/other.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/card-functionality/src/other.rs b/card-functionality/src/other.rs index 3eaa72c..2204c89 100644 --- a/card-functionality/src/other.rs +++ b/card-functionality/src/other.rs @@ -14,7 +14,7 @@ fn main() -> Result<()> { let cards = config.get_cards(); for mut card in cards { - println!("** Run tests on card {:?} **", card); + println!("** Run tests on card '{}' **", card.get_name()); // println!("Get pubkey"); // let _ = run_test(&mut card, test_get_pub, &[])?;