Skip to content

Commit

Permalink
Print physical offset as a raw number
Browse files Browse the repository at this point in the history
  • Loading branch information
komarevtsev-d committed Mar 14, 2024
1 parent cc0ad55 commit 58a2a65
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,9 @@ void TDiskRegistryActor::RenderDevicesWithDetails(
out << FormatByteSize(bytes);
}
TABLED() {
out << FormatByteSize(device.GetPhysicalOffset());
out << device.GetPhysicalOffset() << " ("
<< FormatByteSize(device.GetPhysicalOffset())
<< ")";
}
TABLED() { out << device.GetTransportId(); }
TABLED() {
Expand Down

0 comments on commit 58a2a65

Please sign in to comment.