From: Ian Jackson Date: Thu, 20 May 2021 11:06:38 +0000 (+0100) Subject: bundles: Display hashes more nicely X-Git-Tag: otter-0.6.0~120 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=aea63a43fd43d596485c7af756540a0a1f1da308;p=otter.git bundles: Display hashes more nicely Signed-off-by: Ian Jackson --- diff --git a/src/bundles.rs b/src/bundles.rs index 4f793c67..cda5f6be 100644 --- a/src/bundles.rs +++ b/src/bundles.rs @@ -307,7 +307,7 @@ impl Display for State { match self { State::Loaded(Loaded{ meta, size, hash }) => { let BundleMeta { title } = meta; - write!(f, "Loaded {:?} {:10} {}", title, size, hash)?; + write!(f, "Loaded {:10} {} {:?}", size, hash, title)?; } other => write!(f, "{:?}", other)?, }