From def4395bd1ca2441b374ce53208cc5b2b000f015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 2 Mar 2020 18:43:07 +0100 Subject: [PATCH] wayland: log whether CSDs or SSDs are used at info level, not debug --- wayland.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wayland.c b/wayland.c index c5272994..95d2880e 100644 --- a/wayland.c +++ b/wayland.c @@ -648,13 +648,13 @@ xdg_toplevel_decoration_configure(void *data, switch (mode) { case ZXDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE: - LOG_DBG("using client-side decorations"); + LOG_INFO("using CSD decorations"); win->use_csd = CSD_YES; csd_instantiate(win); break; case ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE: - LOG_DBG("using server-side decorations"); + LOG_INFO("using SSD decorations"); win->use_csd = CSD_NO; csd_destroy(win); break;