3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-05-06 13:13:18 +00:00

Fix handleKeybinds debug log

This commit is contained in:
Darksome
2022-07-16 15:34:13 +03:00
parent ce9efb7ae3
commit 08319dd1f5

View File

@ -122,7 +122,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const std::string&
Debug::log(ERR, "Inavlid handler in a keybind! (handler %s does not exist)", k.handler.c_str());
} else {
// call the dispatcher
Debug::log(LOG, "Keybind triggered, calling dispatcher (%d, %s)", modmask, key);
Debug::log(LOG, "Keybind triggered, calling dispatcher (%d, %s, %d)", modmask, key, keysym);
DISPATCHER->second(k.arg);
}