Log keybind dispatchers only

This commit is contained in:
vaxerski
2022-05-30 09:16:00 +02:00
parent 2de65771ea
commit 3d7abfea92
2 changed files with 1 additions and 3 deletions

View File

@@ -89,6 +89,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t
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, KBKEYUPPER);
DISPATCHER->second(k.arg);
}