From 99eaef27fd42708174011fb487049dbea9af4455 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 8 Jul 2018 20:34:47 +0200 Subject: [PATCH] chg: 'sc' more debug --- client/cmdsmartcard.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/cmdsmartcard.c b/client/cmdsmartcard.c index 37b85741d..66ac3e528 100644 --- a/client/cmdsmartcard.c +++ b/client/cmdsmartcard.c @@ -103,7 +103,11 @@ int CmdSmartRaw(const char *Cmd) { PrintAndLogEx(WARNING, "smart card response failed"); return 1; } - PrintAndLogEx(SUCCESS,"isOK %d | resp: %s", resp.arg[0], sprint_hex(resp.d.asBytes, resp.arg[1])); + PrintAndLogEx(SUCCESS,"isOK %d | %d | resp: %s", + resp.arg[0], + resp.arg[1], + sprint_hex(resp.d.asBytes, resp.arg[1]) + ); } return 0; }