Fix handleKeybinds debug log

This commit is contained in:
Darksome 2022-07-16 15:34:13 +03:00
parent ce9efb7ae3
commit 08319dd1f5
1 changed files with 1 additions and 1 deletions

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