changeset 40058 | cf01616f8d96 |
parent 40057 | 25b2868206e2 |
child 40076 | 2e9378f62232 |
--- a/mercurial/copies.py Fri Sep 07 11:16:06 2018 -0400 +++ b/mercurial/copies.py Fri Sep 07 11:43:48 2018 -0400 @@ -204,11 +204,16 @@ fctx = b[f] fctx._ancestrycontext = ancestrycontext + if debug: + start = util.timer() ofctx = _tracefile(fctx, am, limit) if ofctx: if debug: dbg('debug.copies: rename of: %s\n' % ofctx._path) cm[f] = ofctx.path() + if debug: + dbg('debug.copies: time: %s seconds\n' + % (util.timer() - start)) return cm def _forwardcopies(a, b, match=None):