1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

VirtualConsole: Use dbg() instead of dbgprintf()

This commit is contained in:
Liav A 2020-02-25 00:38:28 +02:00 committed by Andreas Kling
parent 309593d5bd
commit 8a22e93ebb

View file

@ -129,7 +129,7 @@ void VirtualConsole::switch_to(unsigned index)
return;
active_console->set_active(false);
}
dbgprintf("VC: Switch to %u (%p)\n", index, s_consoles[index]);
dbg() << "VC: Switch to " << index << " (" << s_consoles[index] << ")";
s_active_console = index;
s_consoles[s_active_console]->set_active(true);
Console::the().set_implementation(s_consoles[s_active_console]);