From ebc3d74b040790e5154ffb8f45a456e6e79679aa Mon Sep 17 00:00:00 2001 From: Alexander Preisinger Date: Wed, 8 Jan 2014 21:03:57 +0100 Subject: wayland/shm: tone down warnings Those warnings are printed far too often and actually aren't usefull at all. --- video/out/vo_wayland.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video/out/vo_wayland.c b/video/out/vo_wayland.c index c1094bc6a4..48953ef1a6 100644 --- a/video/out/vo_wayland.c +++ b/video/out/vo_wayland.c @@ -539,7 +539,7 @@ static void draw_image(struct vo *vo, mp_image_t *mpi) struct buffer *buf = buffer_get_back(p); if (!buf) { - MP_WARN(p->wl, "can't draw, back buffer is busy\n"); + MP_VERBOSE(p->wl, "can't draw, back buffer is busy\n"); return; } @@ -570,7 +570,7 @@ static void flip_page(struct vo *vo) buffer_swap(p); if (!p->redraw_callback) { - MP_INFO(p->wl, "restart frame callback\n"); + MP_DBG(p->wl, "restart frame callback\n"); frame_handle_redraw(p, NULL, 0); } } -- cgit v1.2.3