diff --git a/client/src/cmdlf.c b/client/src/cmdlf.c index 3015f5deb..832161cef 100644 --- a/client/src/cmdlf.c +++ b/client/src/cmdlf.c @@ -1188,7 +1188,6 @@ static bool CheckChipType(bool getDeviceData) { //check for em4x05/em4x69 chips first uint32_t word = 0; - PrintAndLogEx(INFO, "Checking for 4x05 chipset"); if (EM4x05IsBlock0(&word)) { PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x05 / EM4x69")); PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x05`") " commands"); @@ -1197,7 +1196,6 @@ static bool CheckChipType(bool getDeviceData) { } //check for t55xx chip... - PrintAndLogEx(INFO, "Checking for T55x7 chipset"); if (tryDetectP1(true)) { PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("T55xx")); PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf t55xx`") " commands"); @@ -1205,7 +1203,6 @@ static bool CheckChipType(bool getDeviceData) { } // check for em4x50 chips - PrintAndLogEx(INFO, "Checking for 4x50 chipset"); if (detect_4x50_block()) { PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("EM4x50")); PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf em 4x50`") " commands"); @@ -1253,7 +1250,6 @@ int CmdLFfind(const char *Cmd) { if (isOnline) { if (IfPm3Hitag()) { - PrintAndLogEx(INFO, "check hitag"); if (readHitagUid()) { PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("Hitag") " found!"); return PM3_SUCCESS; @@ -1261,7 +1257,6 @@ int CmdLFfind(const char *Cmd) { } if (IfPm3EM4x50()) { - PrintAndLogEx(INFO, "check 4x50"); if (read_em4x50_uid() == PM3_SUCCESS) { PrintAndLogEx(SUCCESS, "\nValid " _GREEN_("EM4x50 ID") " found!"); return PM3_SUCCESS;