##// END OF EJS Templates
fix: add more information to the debug output...
marmoute -
r50871:b5ecd0bc stable
parent child Browse files
Show More
@@ -698,6 +698,9 b' def fixfile(ui, repo, opts, fixers, fixc'
698 command = fixer.command(ui, path, ranges)
698 command = fixer.command(ui, path, ranges)
699 if command is None:
699 if command is None:
700 continue
700 continue
701 msg = b'fixing: %s - %s - %s\n'
702 msg %= (fixctx, fixername, path)
703 ui.debug(msg)
701 ui.debug(b'subprocess: %s\n' % (command,))
704 ui.debug(b'subprocess: %s\n' % (command,))
702 proc = subprocess.Popen(
705 proc = subprocess.Popen(
703 procutil.tonativestr(command),
706 procutil.tonativestr(command),
@@ -1153,6 +1153,7 b' useful for anyone trying to set up a new'
1153 $ hg commit -Aqm "foo"
1153 $ hg commit -Aqm "foo"
1154 $ printf "Foo\nbar\nBaz\n" > foo.changed
1154 $ printf "Foo\nbar\nBaz\n" > foo.changed
1155 $ hg --debug fix --working-dir
1155 $ hg --debug fix --working-dir
1156 fixing: f65cf3136d41+ - uppercase-changed-lines - foo.changed
1156 subprocess: * $TESTTMP/uppercase.py 1-1 3-3 (glob)
1157 subprocess: * $TESTTMP/uppercase.py 1-1 3-3 (glob)
1157
1158
1158 $ cd ..
1159 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now