From e6feed5311bc061963d9f5f19d415d02dec26236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 6 Mar 2020 19:19:18 +0100 Subject: [PATCH] wayland: remove debug logs --- wayland.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wayland.c b/wayland.c index 83d3f745..4bf77562 100644 --- a/wayland.c +++ b/wayland.c @@ -106,12 +106,10 @@ seat_handle_capabilities(void *data, struct wl_seat *wl_seat, if (caps & WL_SEAT_CAPABILITY_KEYBOARD) { if (wayl->keyboard == NULL) { wayl->keyboard = wl_seat_get_keyboard(wl_seat); - LOG_INFO("got KBD %p", wayl->keyboard); wl_keyboard_add_listener(wayl->keyboard, &keyboard_listener, wayl); } } else { if (wayl->keyboard != NULL) { - LOG_INFO("releasing KBD %p", wayl->keyboard); wl_keyboard_release(wayl->keyboard); wayl->keyboard = NULL; } @@ -120,12 +118,10 @@ seat_handle_capabilities(void *data, struct wl_seat *wl_seat, if (caps & WL_SEAT_CAPABILITY_POINTER) { if (wayl->pointer.pointer == NULL) { wayl->pointer.pointer = wl_seat_get_pointer(wl_seat); - LOG_INFO("got pointer %p", wayl->pointer.pointer); wl_pointer_add_listener(wayl->pointer.pointer, &pointer_listener, wayl); } } else { if (wayl->pointer.pointer != NULL) { - LOG_INFO("releasing pointer %p", wayl->pointer.pointer); wl_pointer_release(wayl->pointer.pointer); wayl->pointer.pointer = NULL; }