removed debug output

This commit is contained in:
Frank Morgner
2013-06-25 21:48:49 +02:00
parent 04efb3588e
commit a7ceffeb9f

View File

@@ -84,13 +84,11 @@ IFDHCloseChannel (DWORD Lun)
if (slot >= VICC_MAX_SLOTS) { if (slot >= VICC_MAX_SLOTS) {
return IFD_COMMUNICATION_ERROR; return IFD_COMMUNICATION_ERROR;
} }
Log2(PCSC_LOG_ERROR, "Slot %u", slot);
if (vicc_exit(ctx[slot]) < 0) { if (vicc_exit(ctx[slot]) < 0) {
Log1(PCSC_LOG_ERROR, "Could not close connection to virtual ICC"); Log1(PCSC_LOG_ERROR, "Could not close connection to virtual ICC");
return IFD_COMMUNICATION_ERROR; return IFD_COMMUNICATION_ERROR;
} }
ctx[slot] = NULL; ctx[slot] = NULL;
Log2(PCSC_LOG_ERROR, "Slot %u", slot);
return IFD_SUCCESS; return IFD_SUCCESS;
} }