comparison mercurial/branchmap.py @ 21789:15baed3f24ee

branchmap: don't use ui.warn for debug message
author Matt Mackall <mpm@selenic.com>
date Mon, 23 Jun 2014 13:50:44 -0500
parents c20843aee8a4
children d5cef58d8ec8
comparison
equal deleted inserted replaced
21788:c20843aee8a4 21789:15baed3f24ee
56 if repo.ui.debugflag: 56 if repo.ui.debugflag:
57 msg = 'invalid branchheads cache' 57 msg = 'invalid branchheads cache'
58 if repo.filtername is not None: 58 if repo.filtername is not None:
59 msg += ' (%s)' % repo.filtername 59 msg += ' (%s)' % repo.filtername
60 msg += ': %s\n' 60 msg += ': %s\n'
61 repo.ui.warn(msg % inst) 61 repo.ui.debug(msg % inst)
62 partial = None 62 partial = None
63 return partial 63 return partial
64 64
65 65
66 66