diff -r 362c0026a977 -r 236702592ff0 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Tue Jul 26 10:04:06 2022 +0200 +++ b/mercurial/debugcommands.py Tue Jul 26 10:34:20 2022 +0200 @@ -1378,6 +1378,19 @@ # display discovery summary fm.plain(b"elapsed time: %(elapsed)f seconds\n" % data) fm.plain(b"round-trips: %(total-roundtrips)9d\n" % data) + if b'total-round-trips-heads' in data: + fm.plain( + b" round-trips-heads: %(total-round-trips-heads)9d\n" % data + ) + if b'total-round-trips-branches' in data: + fm.plain( + b" round-trips-branches: %(total-round-trips-branches)9d\n" + % data + ) + if b'total-round-trips-between' in data: + fm.plain( + b" round-trips-between: %(total-round-trips-between)9d\n" % data + ) fm.plain(b"queries: %(total-queries)9d\n" % data) if b'total-queries-branches' in data: fm.plain(b" queries-branches: %(total-queries-branches)9d\n" % data)