summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2016-05-31 01:47:04 +0100
committerwm4 <wm4@nowhere>2016-05-31 11:22:57 +0200
commite44882d792f6f2dc85886462cf53780018c6fedc (patch)
tree8d4abdb82e6b37845e9bc73affab4754ba809c2e
parent29ea6e5e4a25a08fda93ad2769d5dcaef041a95b (diff)
downloadmpv-e44882d792f6f2dc85886462cf53780018c6fedc.tar.bz2
mpv-e44882d792f6f2dc85886462cf53780018c6fedc.tar.xz
wayland: mark existing dnd entry print as debug rather than an error
It gets printed on every alt+tab or desktop switch under mutter and weston, and offers no useful information since it's handled by destroying the previous entry. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-rw-r--r--video/out/wayland_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index 9ec3a4f65d..0e44dddef6 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -540,7 +540,7 @@ static void data_device_handle_data_offer(void *data,
{
struct vo_wayland_state *wl = data;
if (wl->input.offer) {
- MP_ERR(wl, "There is already a dnd entry point.\n");
+ MP_DBG(wl, "There is already a dnd entry point.\n");
wl_data_offer_destroy(wl->input.offer);
}