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

WindowServer+LibVT: Convert some dbgprintf() to dbg()

These kept annoying me, because these were the only two lines in the default
boot log that went unattributed.
This commit is contained in:
Sergey Bugaev 2020-08-18 16:36:28 +03:00 committed by Andreas Kling
parent 7861ebaad7
commit 1671e1ac92
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ int main(int, char**)
return 1;
}
dbgprintf("Entering WindowServer main loop.\n");
dbg() << "Entering WindowServer main loop";
loop.exec();
ASSERT_NOT_REACHED();
}