diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-28 18:47:52 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-09-28 18:47:52 -0400 |
commit | 262c3b1638d42012d6be9ce9f5a3f4c2f7cdaae1 (patch) | |
tree | 84db00a189d1b55df66fab2305d16cba1a3afe2f | |
parent | e3af7d508fce607c56ca7d2e3afde4dd4eb9587a (diff) |
Remove unnecessary logging
-rw-r--r-- | types/wlr_seat.c | 1 | ||||
-rw-r--r-- | types/wlr_surface.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/types/wlr_seat.c b/types/wlr_seat.c index e473064a..aaff6005 100644 --- a/types/wlr_seat.c +++ b/types/wlr_seat.c @@ -377,7 +377,6 @@ void wlr_seat_pointer_send_axis(struct wlr_seat *wlr_seat, uint32_t time, } static void keyboard_key_notify(struct wl_listener *listener, void *data) { - wlr_log(L_DEBUG, "Updating keyboard"); struct wlr_seat_keyboard *seat_kb = wl_container_of( listener, seat_kb, key); struct wlr_seat *seat = seat_kb->seat; diff --git a/types/wlr_surface.c b/types/wlr_surface.c index 09002d2d..a9a54abe 100644 --- a/types/wlr_surface.c +++ b/types/wlr_surface.c @@ -117,7 +117,6 @@ static void wlr_surface_update_size(struct wlr_surface *surface) { surface->current.width = _width; surface->current.height = _height; - wlr_log(L_DEBUG, "%dx%d", _width, _height); } static void wlr_surface_to_buffer_region(struct wlr_surface *surface, |