mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +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.
This commit is contained in:
@@ -223,7 +223,7 @@ void init_stage2(void*)
|
||||
bool text_mode = kernel_command_line().lookup("boot_mode").value_or("graphical") == "text";
|
||||
|
||||
if (text_mode) {
|
||||
dbg() << "Text mode enabled";
|
||||
dbgln("Text mode enabled");
|
||||
} else {
|
||||
bool bxvga_found = false;
|
||||
PCI::enumerate([&](const PCI::Address&, PCI::ID id) {
|
||||
@@ -300,7 +300,7 @@ void init_stage2(void*)
|
||||
|
||||
void setup_serial_debug()
|
||||
{
|
||||
// serial_debug will output all the klog() and dbg() data to COM1 at
|
||||
// serial_debug will output all the klog() and dbgln() data to COM1 at
|
||||
// 8-N-1 57600 baud. this is particularly useful for debugging the boot
|
||||
// process on live hardware.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user