- if (APDULogging)
- PrintAndLog("APDU(%02x%02x) ERROR: [%4X] %s", apdu.CLA, apdu.INS, isw, GetAPDUCodeDescription(*sw >> 8, *sw & 0xff));
- return 5;
+ if (APDULogging) {
+ if (*sw >> 8 == 0x61) {
+ PrintAndLog("APDU chaining len:%02x -->", *sw & 0xff);
+ } else {
+ PrintAndLog("APDU(%02x%02x) ERROR: [%4X] %s", apdu.CLA, apdu.INS, isw, GetAPDUCodeDescription(*sw >> 8, *sw & 0xff));
+ return 5;
+ }
+ }