Skip to content

Commit

Permalink
👷 tui: as we mount dump partition into log
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Jul 28, 2024
1 parent a4b3f80 commit 075cec2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1726,6 +1726,8 @@ auto mount_root_partition(std::vector<gucc::fs::Partition>& partitions) noexcept
const auto& root_part_uuid = gucc::fs::utils::get_device_uuid(root_part_struct.device);
root_part_struct.uuid_str = root_part_uuid;

utils::dump_partition_to_log(root_part_struct);

// insert root partition
partitions.emplace_back(std::move(root_part_struct));

Expand Down Expand Up @@ -1892,6 +1894,8 @@ void mount_partitions() noexcept {
const auto& part_uuid = gucc::fs::utils::get_device_uuid(part_struct.device);
part_struct.uuid_str = part_uuid;

utils::dump_partition_to_log(part_struct);

// insert root partition
partitions.emplace_back(std::move(part_struct));

Expand Down

0 comments on commit 075cec2

Please sign in to comment.