diff -r 86fe85364811 -r 6b6872822b32 mercurial/commands.py --- a/mercurial/commands.py Wed Dec 11 11:22:37 2019 -0800 +++ b/mercurial/commands.py Wed Dec 11 22:23:42 2019 -0800 @@ -2224,8 +2224,8 @@ if t == b'path': ui.debug(b'read config from: %s\n' % f) elif t == b'items': - for section, name, value, source in f: - ui.debug(b'set config by: %s\n' % source) + # Don't print anything for 'items'. + pass else: raise error.ProgrammingError(b'unknown rctype: %s' % t) untrusted = bool(opts.get(b'untrusted'))