From e0c3635282879272b888c2b610a884ec04172ef2 Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Fri, 2 Feb 2024 21:56:58 +0100 Subject: [PATCH] src/desktop.c: reduce OSD log spam on hover --- src/desktop.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/desktop.c b/src/desktop.c index f7c61ac9..35d56b87 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -454,7 +454,11 @@ get_cursor_context(struct server *server) /* node->parent is always a *wlr_scene_tree */ node = node->parent ? &node->parent->node : NULL; } - wlr_log(WLR_ERROR, "Unknown node detected"); + + /* + * TODO: add node descriptors for the OSDs and reinstate + * wlr_log(WLR_DEBUG, "Unknown node detected"); + */ return ret; }