diff -r d83e51654c8a -r fbc4eb8e2433 mercurial/commands.py --- a/mercurial/commands.py Sun Mar 26 21:33:37 2017 -0700 +++ b/mercurial/commands.py Sun Mar 26 21:40:22 2017 -0700 @@ -1808,7 +1808,8 @@ if t == 'path': ui.debug('read config from: %s\n' % f) elif t == 'items': - pass + for section, name, value, source in f: + ui.debug('set config by: %s\n' % source) else: raise error.ProgrammingError('unknown rctype: %s' % t) untrusted = bool(opts.get('untrusted'))