summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 04:51:36 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 04:51:36 +0100
commit2bd1d68300e94536b4c12ce1bd8d066b47c659d4 (patch)
tree3ccb58271b8a18c2eb5ab3b36b7979aae3129877 /dev
parentab4e4900ed17b344efc1497d06a7f397a318d7a1 (diff)
BootKit.h: Better logging of the new partition's block.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev')
-rw-r--r--dev/Boot/BootKit/BootKit.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/Boot/BootKit/BootKit.h b/dev/Boot/BootKit/BootKit.h
index 2de5ca09..d8f6d4ca 100644
--- a/dev/Boot/BootKit/BootKit.h
+++ b/dev/Boot/BootKit/BootKit.h
@@ -365,12 +365,12 @@ namespace Boot
BTextWriter writer;
- writer << "partition name: " << part.PartitionName << "\r";
- writer << "start: " << part.StartCatalog << "\r";
- writer << "number of catalogs: " << part.CatalogCount << "\r";
- writer << "free catalog: " << part.FreeCatalog << "\r";
- writer << "free sectors: " << part.FreeSectors << "\r";
- writer << "sector size: " << part.SectorSize << "\r";
+ writer << "BootZ: Partition name: " << part.PartitionName << "\r";
+ writer << "BootZ: Start: " << part.StartCatalog << "\r";
+ writer << "BootZ: Number of catalogs: " << part.CatalogCount << "\r";
+ writer << "BootZ: Free catalog: " << part.FreeCatalog << "\r";
+ writer << "BootZ: Free sectors: " << part.FreeSectors << "\r";
+ writer << "BootZ: Sector size: " << part.SectorSize << "\r";
#ifdef BOOTZ_EPM_SUPPORT
EPM_PART_BLOCK epm_boot{0};