summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_wayland.c4
1 files 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);
}
}