mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
VirtualConsole: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
309593d5bd
commit
8a22e93ebb
Notes:
sideshowbarker
2024-07-19 09:00:35 +09:00
Author: https://github.com/supercomputer7
Commit: 8a22e93ebb
Pull-request: https://github.com/SerenityOS/serenity/pull/1290
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue