mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-29 07:48:47 +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:
parent
dca6f1f49b
commit
5931758dbc
Notes:
sideshowbarker
2024-07-18 23:56:40 +09:00
Author: https://github.com/asynts
Commit: 5931758dbc
Pull-request: https://github.com/SerenityOS/serenity/pull/4887
7 changed files with 20 additions and 20 deletions
|
@ -133,7 +133,7 @@ bool GUIDPartitionTable::initialize()
|
|||
Array<u8, 16> unique_guid {};
|
||||
unique_guid.span().overwrite(0, entry.unique_guid, unique_guid.size());
|
||||
String name = entry.partition_name;
|
||||
dbg() << "Detected GPT partition (entry " << entry_index << ") , offset " << entry.first_lba << " , limit " << entry.last_lba;
|
||||
dbgln("Detected GPT partition (entry={}), offset={}, limit={}", entry_index, entry.first_lba, entry.last_lba);
|
||||
m_partitions.append({ entry.first_lba, entry.last_lba, partition_type, unique_guid, entry.attributes, "" });
|
||||
raw_byte_index += header().partition_entry_size;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue