[PATCH 0/1] MR8708: winebus: Quiet a log message about ignored HID devices.
I effectively upgraded this message from TRACE to ERR in c5f9d9188a6dea5b9e9e4a2f8fbf362f11b5e72b for reasons I don't really recall. It's not an error per se, just expected behavior for now. And it's noisy - on certain devices it's normal to see this ~20 times on startup. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8708
From: Tim Clem <tclem(a)codeweavers.com> --- dlls/winebus.sys/bus_iohid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winebus.sys/bus_iohid.c b/dlls/winebus.sys/bus_iohid.c index 5a210fc6bbd..826b295be2b 100644 --- a/dlls/winebus.sys/bus_iohid.c +++ b/dlls/winebus.sys/bus_iohid.c @@ -297,7 +297,7 @@ static void handle_DeviceMatchingCallback(void *context, IOReturn result, void * * opening keyboards, mice, or the Touch Bar on older MacBooks triggers * a permissions dialog for input monitoring. */ - ERR("Ignoring HID device %p (vid %04x, pid %04x): not a joystick or gamepad\n", IOHIDDevice, desc.vid, desc.pid); + WARN("Ignoring HID device %p (vid %04x, pid %04x): not a joystick or gamepad\n", IOHIDDevice, desc.vid, desc.pid); return; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8708
This merge request was approved by Rémi Bernon. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8708
participants (3)
-
Rémi Bernon -
Tim Clem -
Tim Clem (@tclem)