1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:27:43 +00:00

KeyboardDevice: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-24 16:01:50 +02:00 committed by Andreas Kling
parent 3f95a7fc97
commit bb9fba1fdd

View file

@ -501,7 +501,7 @@ void KeyboardDevice::handle_irq(RegisterState&)
}
#ifdef KEYBOARD_DEBUG
dbgprintf("Keyboard::handle_irq: %b %s\n", ch, pressed ? "down" : "up");
dbg() << "Keyboard::handle_irq: " << String::format("%b", ch) << " " << (pressed ? "down" : "up");
#endif
switch (ch) {
case 0x38: