From 3b7200d1b1f4e362bcddf5db1fe8591ca2fa01ba Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 30 Oct 2020 02:06:14 +0100 Subject: [PATCH] hide debug --- client/src/cmdhfmf.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index 65371c7cb..cc99df4b7 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -5328,11 +5328,10 @@ static int CmdHf14AMfSuperCard(const char *Cmd) { des_decrypt(outB + i, responseB + i, key); } - PrintAndLogEx(INFO, " in : %s", sprint_hex_inrow(responseA, respAlen)); - PrintAndLogEx(INFO, "out : %s", sprint_hex_inrow(outA, sizeof(outA))); - - PrintAndLogEx(INFO, " in : %s", sprint_hex_inrow(responseB, respAlen)); - PrintAndLogEx(INFO, "out : %s", sprint_hex_inrow(outB, sizeof(outB))); + PrintAndLogEx(DEBUG, " in : %s", sprint_hex_inrow(responseA, respAlen)); + PrintAndLogEx(DEBUG, "out : %s", sprint_hex_inrow(outA, sizeof(outA))); + PrintAndLogEx(DEBUG, " in : %s", sprint_hex_inrow(responseB, respAlen)); + PrintAndLogEx(DEBUG, "out : %s", sprint_hex_inrow(outB, sizeof(outB))); if (memcmp(outA, "\x01\x01\x01\x01\x01\x01\x01\x01", 8) == 0) { PrintAndLogEx(INFO, "No trace recorded");