Mercurial > public > mercurial-scm > hg-stable
diff mercurial/filelog.py @ 49739:35d4c2124073
debug: add an option to display statistic about a unbundling operation
This will helps a lot to understand how the bundling decision have actually
impacted pull/unbundle on the other side.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 17 Oct 2022 22:19:43 +0200 |
parents | 9cac281eb9c0 |
children | 152d9c011bcd |
line wrap: on
line diff
--- a/mercurial/filelog.py Tue Nov 15 16:25:23 2022 +0100 +++ b/mercurial/filelog.py Mon Oct 17 22:19:43 2022 +0200 @@ -153,6 +153,7 @@ addrevisioncb=None, duplicaterevisioncb=None, maybemissingparents=False, + debug_info=None, ): if maybemissingparents: raise error.Abort( @@ -173,6 +174,7 @@ transaction, addrevisioncb=addrevisioncb, duplicaterevisioncb=duplicaterevisioncb, + debug_info=debug_info, ) def getstrippoint(self, minlink):