diff --git a/DeviceAdapters/HIDManager/HIDManager.cpp b/DeviceAdapters/HIDManager/HIDManager.cpp index 297cddddc..f2fb48802 100755 --- a/DeviceAdapters/HIDManager/HIDManager.cpp +++ b/DeviceAdapters/HIDManager/HIDManager.cpp @@ -603,7 +603,8 @@ void HIDDeviceLister::ListHIDDevices(std::vector &availableDevices) // lists all HID Devices on this system that we know about void HIDDeviceLister::FindHIDDevices(std::vector &availableDevices) { - printf("Discovering HID Devices......\n"); + // see https://github.com/micro-manager/mmCoreAndDevices/issues/402 + // printf("Discovering HID Devices......\n"); struct hid_device_info *devs, *curDev; @@ -613,14 +614,14 @@ void HIDDeviceLister::FindHIDDevices(std::vector &availableDevices) while (curDev) { - printf ("HID Device pid: %04hx vid: %04hx\n", curDev->product_id, curDev->product_id); + // printf ("HID Device pid: %04hx vid: %04hx\n", curDev->product_id, curDev->product_id); for (int i=0; ivendor_id == g_knownDevices[i].idVendor) && (curDev->product_id == g_knownDevices[i].idProduct) ) { availableDevices.push_back(g_knownDevices[i].name); - printf ("HID Device found: %s\n", g_knownDevices[i].name.c_str()); + // printf ("HID Device found: %s\n", g_knownDevices[i].name.c_str()); } } curDev = curDev->next;