From 5513eed64d46ef542a2dfaeb4a3229e1d195b02b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Conzelmann?= <45296195+zephvr@users.noreply.github.com> Date: Thu, 30 Nov 2023 16:20:08 +0100 Subject: [PATCH] managers: fix debug log using printf format (#4007) Some debug messages where using printf format style to print variable content instead of std::format format. --- src/managers/KeybindManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 11e2fa02..c61ad82e 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -1903,7 +1903,7 @@ void CKeybindManager::alterZOrder(std::string args) { else if (POSITION == "bottom") g_pCompositor->changeWindowZOrder(PWINDOW, 0); else { - Debug::log(ERR, "alterZOrder: bad position: %s", POSITION); + Debug::log(ERR, "alterZOrder: bad position: {}", POSITION); return; } @@ -2055,7 +2055,7 @@ void CKeybindManager::moveWindowOrGroup(std::string args) { static auto* const PIGNOREGROUPLOCK = &g_pConfigManager->getConfigValuePtr("binds:ignore_group_lock")->intValue; if (!isDirection(args)) { - Debug::log(ERR, "Cannot move into group in direction %c, unsupported direction. Supported: l,r,u/t,d/b", arg); + Debug::log(ERR, "Cannot move into group in direction {}, unsupported direction. Supported: l,r,u/t,d/b", arg); return; }