mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:48:11 +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:
parent
7235ddfd98
commit
019c9eb749
13 changed files with 41 additions and 28 deletions
|
@ -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.
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue