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.
This commit is contained in:
François Conzelmann 2023-11-30 16:20:08 +01:00 committed by GitHub
parent 29970228c5
commit 5513eed64d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}