From fe62fa99f6e550d94680c6019ab746fab4aabe52 Mon Sep 17 00:00:00 2001 From: Ilia Bozhinov Date: Mon, 24 Feb 2025 17:41:06 +0100 Subject: [PATCH] input-manager: move device mapping log to INPUT_DEVICES category --- src/core/seat/input-manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/seat/input-manager.cpp b/src/core/seat/input-manager.cpp index 5961f401d..c665eac3d 100644 --- a/src/core/seat/input-manager.cpp +++ b/src/core/seat/input-manager.cpp @@ -85,11 +85,11 @@ void wf::input_manager_t::configure_input_device(std::unique_ptrfind_output(mapped_output); if (wo) { - LOGD("Mapping input ", dev->name, " to output ", wo->to_string(), "."); + LOGC(INPUT_DEVICES, "Mapping input ", dev->name, " to output ", wo->to_string(), "."); wlr_cursor_map_input_to_output(cursor, dev, wo->handle); } else { - LOGD("Mapping input ", dev->name, " to output null."); + LOGC(INPUT_DEVICES, "Mapping input ", dev->name, " to output null."); wlr_cursor_map_input_to_output(cursor, dev, nullptr); } }