comparison mercurial/configitems.py @ 49227:2bcf5e14bb7e

deltas: add a `debug.revlog.debug-delta` config option enable output This provide a way to enable the code introduced in the previous changeset. This will provide a large amount of output when applying a bundle with details about each delta "computation".
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 19 May 2022 23:39:42 +0100
parents 411d591e0a27
children 9e203cda3238
comparison
equal deleted inserted replaced
49226:e6b7c6fbeb48 49227:2bcf5e14bb7e
582 b'debug', 582 b'debug',
583 b'revlog.verifyposition.changelog', 583 b'revlog.verifyposition.changelog',
584 default=b'', 584 default=b'',
585 ) 585 )
586 coreconfigitem( 586 coreconfigitem(
587 b'debug',
588 b'revlog.debug-delta',
589 default=False,
590 )
591 coreconfigitem(
587 b'defaults', 592 b'defaults',
588 b'.*', 593 b'.*',
589 default=None, 594 default=None,
590 generic=True, 595 generic=True,
591 ) 596 )