diff --git a/src/servers/input/InputServerDevice.cpp b/src/servers/input/InputServerDevice.cpp index cc95d7ed01..d05c56019e 100644 --- a/src/servers/input/InputServerDevice.cpp +++ b/src/servers/input/InputServerDevice.cpp @@ -167,8 +167,11 @@ BInputServerDevice::RegisterDevices(input_device_ref **devices) } if (!found) { + PRINT(("RegisterDevices not found %s\n", device->name)); InputServer::gInputDeviceList.AddItem(new InputDeviceListItem(this, *device) ); Start(device->name, device->cookie); + } else { + PRINT(("RegisterDevices found %s\n", device->name)); } }