Change FAILED log messages back to DEBUG

Signed-off-by: Gulshan Singh <gsingh2011@gmail.com>
This commit is contained in:
Gulshan Singh 2024-02-16 08:36:45 -08:00 committed by GitHub
commit 6dc308f220
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -573,13 +573,13 @@ static int mfc_read_tag(iso14a_card_select_t *card, uint8_t *carddata, uint8_t n
SendCommandMIX(CMD_HF_ISO14443A_READER, ISO14A_CONNECT, 0, 0, NULL, 0);
PacketResponseNG resp;
if (WaitForResponseTimeout(CMD_ACK, &resp, 1500) == false) {
PrintAndLogEx(FAILED, "iso14443a card select timeout");
PrintAndLogEx(DEBUG, "iso14443a card select timeout");
return PM3_ETIMEOUT;
}
uint64_t select_status = resp.oldarg[0];
if (select_status == 0) {
PrintAndLogEx(FAILED, "iso14443a card select failed");
PrintAndLogEx(DEBUG, "iso14443a card select failed");
return PM3_ESOFT;
}