# HG changeset patch # User Pierre-Yves David # Date 2022-07-28 13:41:45 # Node ID a3ac3f1623dda0dc5256023e3a1388d40690b537 # Parent b4535c88a05b71d48ac9d87a3bfdc4cfe6246f5b debug-delta-find: introduce a quiet mode In quiet mode, we only print the summary of the search and skip the individual steps. diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -1021,7 +1021,7 @@ def debugdeltafind(ui, repo, arg_1, arg_ deltacomputer = deltautil.deltacomputer( revlog, write_debug=ui.write, - debug_search=True, + debug_search=not ui.quiet, ) node = revlog.node(rev)