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

Kernel: Convert klog() => AK::Format in a handful of places

This commit is contained in:
Andreas Kling 2021-03-12 14:06:37 +01:00
parent ad2f95e35a
commit 73e06a1983
9 changed files with 16 additions and 17 deletions

View file

@ -76,7 +76,7 @@ void SpuriousInterruptHandler::handle_interrupt(const RegisterState& state)
m_real_handler->handle_interrupt(state);
return;
}
klog() << "Spurious Interrupt, vector " << interrupt_number();
dbgln("Spurious interrupt, vector {}", interrupt_number());
}
void SpuriousInterruptHandler::enable_interrupt_vector()