hgext/fix.py
branchstable
changeset 49976 b5ecd0bcbcd7
parent 48946 642e31cb55f0
child 50090 a3c856e2ea2f
--- a/hgext/fix.py	Fri Feb 03 01:07:59 2023 -0500
+++ b/hgext/fix.py	Fri Feb 03 12:54:17 2023 +0100
@@ -698,6 +698,9 @@
             command = fixer.command(ui, path, ranges)
             if command is None:
                 continue
+            msg = b'fixing: %s - %s - %s\n'
+            msg %= (fixctx, fixername, path)
+            ui.debug(msg)
             ui.debug(b'subprocess: %s\n' % (command,))
             proc = subprocess.Popen(
                 procutil.tonativestr(command),