From 01592d2633073fad504b01fd9f0755c74fe1352a Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Sat, 25 Jan 2025 22:14:50 +0100 Subject: [PATCH] surface-helpers: reduce log spam This shows up when processing out-of-surface movement on subsurfaces. --- src/common/surface-helpers.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/surface-helpers.c b/src/common/surface-helpers.c index 76102e8b..e173aa10 100644 --- a/src/common/surface-helpers.c +++ b/src/common/surface-helpers.c @@ -10,7 +10,6 @@ subsurface_parent_layer(struct wlr_surface *wlr_surface) struct wlr_subsurface *subsurface = wlr_subsurface_try_from_wlr_surface(wlr_surface); if (!subsurface) { - wlr_log(WLR_DEBUG, "surface %p is not subsurface", subsurface); return NULL; } struct wlr_surface *parent = subsurface->parent;