From 4893bce4b5ee3c1eb14231097755147bda5eb899 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 3 Sep 2020 10:32:19 +0200 Subject: [PATCH] more logging --- client/src/cmdhfmf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index a41c022fa..5e6b764f1 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -869,6 +869,7 @@ static int FastDumpWithEcFill(uint8_t numsectors) { int res = WaitForResponseTimeout(CMD_HF_MIFARE_EML_LOAD, &resp, 2000); if (res != PM3_SUCCESS) { + PrintAndLogEx(INFO, "fast dump reported back failure, when trying keyA"); } // ecfill key B @@ -878,7 +879,7 @@ static int FastDumpWithEcFill(uint8_t numsectors) { SendCommandNG(CMD_HF_MIFARE_EML_LOAD, (uint8_t *)&payload, sizeof(payload)); res = WaitForResponseTimeout(CMD_HF_MIFARE_EML_LOAD, &resp, 2000); if (res != PM3_SUCCESS) { - + PrintAndLogEx(INFO, "fast dump reported back failure, when trying keyB"); } return PM3_SUCCESS; }