summaryrefslogtreecommitdiff
path: root/Kernel/Scheduler.cpp
diff options
context:
space:
mode:
authorasynts <asynts@gmail.com>2021-01-09 00:11:15 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-09 21:11:09 +0100
commit019c9eb749f2fdb6f99f0ce0aba86c331538636d (patch)
tree73c61d5c90c283c25f9a03621c6b154adfee684f /Kernel/Scheduler.cpp
parent7235ddfd98a2c718afe7d773ed24db0720f2c4db (diff)
downloadserenity-019c9eb749f2fdb6f99f0ce0aba86c331538636d.zip
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'Kernel/Scheduler.cpp')
-rw-r--r--Kernel/Scheduler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Scheduler.cpp b/Kernel/Scheduler.cpp
index bd5137a440..7e7aac64b3 100644
--- a/Kernel/Scheduler.cpp
+++ b/Kernel/Scheduler.cpp
@@ -532,7 +532,7 @@ void Scheduler::notify_finalizer()
void Scheduler::idle_loop(void*)
{
- dbg() << "Scheduler[" << Processor::current().id() << "]: idle loop running";
+ dbgln("Scheduler[{}]: idle loop running", Processor::current().id());
ASSERT(are_interrupts_enabled());
for (;;) {