diff mercurial/debugcommands.py @ 49433:a3ac3f1623dd

debug-delta-find: introduce a quiet mode In quiet mode, we only print the summary of the search and skip the individual steps.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 28 Jul 2022 15:41:45 +0200
parents 2e726c934fcd
children f59e49f6bee4
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Wed Aug 17 12:03:55 2022 -0400
+++ b/mercurial/debugcommands.py	Thu Jul 28 15:41:45 2022 +0200
@@ -1021,7 +1021,7 @@
     deltacomputer = deltautil.deltacomputer(
         revlog,
         write_debug=ui.write,
-        debug_search=True,
+        debug_search=not ui.quiet,
     )
 
     node = revlog.node(rev)