mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
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.Everything:
This commit is contained in:
@@ -34,13 +34,13 @@ UnhandledInterruptHandler::UnhandledInterruptHandler(u8 interrupt_vector)
|
||||
|
||||
void UnhandledInterruptHandler::handle_interrupt(const RegisterState&)
|
||||
{
|
||||
dbg() << "Interrupt: Unhandled vector " << interrupt_number() << " was invoked for handle_interrupt(RegisterState&).";
|
||||
dbgln("Interrupt: Unhandled vector {} was invoked for handle_interrupt(RegisterState&).", interrupt_number());
|
||||
Processor::halt();
|
||||
}
|
||||
|
||||
[[noreturn]] bool UnhandledInterruptHandler::eoi()
|
||||
{
|
||||
dbg() << "Interrupt: Unhandled vector " << interrupt_number() << " was invoked for eoi().";
|
||||
dbgln("Interrupt: Unhandled vector {} was invoked for eoi().", interrupt_number());
|
||||
Processor::halt();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user