histedit: display action being processed in debug mode
This is very useful when debugging histedit.
--- a/hgext/histedit.py Fri Sep 21 19:24:31 2012 +0200
+++ b/hgext/histedit.py Fri Sep 21 19:25:19 2012 +0200
@@ -553,6 +553,7 @@
writestate(repo, parentctx.node(), created, replaced,
tmpnodes, existing, rules, keep, tip, replacemap)
action, ha = rules.pop(0)
+ ui.debug('histedit: processing %s %s\n' % (action, ha))
(parentctx, created_, replaced_, tmpnodes_) = actiontable[action](
ui, repo, parentctx, ha, opts)