mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 17:44:58 +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
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