# HG changeset patch # User Pierre-Yves David # Date 2012-09-21 17:25:19 # Node ID 4721fc933943ac79646d3559a991d0415ea32927 # Parent 9ae073f10572be67bb809f4e9100f3e9d9a56e1d histedit: display action being processed in debug mode This is very useful when debugging histedit. diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -553,6 +553,7 @@ def histedit(ui, repo, *parent, **opts): 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)