summaryrefslogtreecommitdiff
path: root/src/lib/ext.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-05 21:36:53 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-05 21:36:53 +0100
commit59e358ae25f84314afc6d8235aecaec124822f3f (patch)
tree86a353b49bcc8b0cd5d3a9a4db4ca13e4f5f20f0 /src/lib/ext.cc
parent15add8826db680f0e1ad13246e0411d5f83f5296 (diff)
Cleanup: can now remove the _NC log variants.
Diffstat (limited to 'src/lib/ext.cc')
-rw-r--r--src/lib/ext.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/ext.cc b/src/lib/ext.cc
index 1cf63603e..2ba63a5a5 100644
--- a/src/lib/ext.cc
+++ b/src/lib/ext.cc
@@ -319,7 +319,7 @@ try
if (!bd) {
throw CopyError("Failed to open drive", 0, ext4_blockdev_errno);
}
- LOG_DISK_NC("Opened drive");
+ LOG_DISK("Opened drive");
struct ext4_mbr_parts parts;
parts.division[0] = 100;
@@ -332,7 +332,7 @@ try
if (r) {
throw CopyError("Failed to write MBR", r, ext4_blockdev_errno);
}
- LOG_DISK_NC("Wrote MBR");
+ LOG_DISK("Wrote MBR");
struct ext4_mbr_bdevs bdevs;
r = ext4_mbr_scan(bd, &bdevs);
@@ -371,25 +371,25 @@ try
if (!bd) {
throw CopyError("Failed to open partition", 0, ext4_blockdev_errno);
}
- LOG_DISK_NC("Opened partition");
+ LOG_DISK("Opened partition");
r = ext4_mkfs(&fs, bd, &info, F_SET_EXT2, format_progress, nanomsg);
if (r != EOK) {
throw CopyError("Failed to make filesystem", r, ext4_blockdev_errno);
}
- LOG_DISK_NC("Made filesystem");
+ LOG_DISK("Made filesystem");
r = ext4_device_register(bd, "ext4_fs");
if (r != EOK) {
throw CopyError("Failed to register device", r, ext4_blockdev_errno);
}
- LOG_DISK_NC("Registered device");
+ LOG_DISK("Registered device");
r = ext4_mount("ext4_fs", "/mp/", false);
if (r != EOK) {
throw CopyError("Failed to mount device", r, ext4_blockdev_errno);
}
- LOG_DISK_NC("Mounted device");
+ LOG_DISK("Mounted device");
uint64_t total_bytes = 0;
count(dcp_paths, total_bytes);
@@ -409,7 +409,7 @@ try
if (r != EOK) {
throw CopyError("Failed to mount device", r, ext4_blockdev_errno);
}
- LOG_DISK_NC("Re-mounted device");
+ LOG_DISK("Re-mounted device");
verify(copied_files, total_bytes, nanomsg);