Mercurial > public > mercurial-scm > hg-stable
diff mercurial/bundle2.py @ 25314:18c2bcc2c9d5
bundle2: prefix all bundling debug messages with 'bundle2-ouput:'
This makes the origin of the message more explicit.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 26 May 2015 22:57:35 -0700 |
parents | 8f2c362bcb58 |
children | e28245b0da56 |
line wrap: on
line diff
--- a/mercurial/bundle2.py Tue May 26 22:49:03 2015 -0700 +++ b/mercurial/bundle2.py Tue May 26 22:57:35 2015 -0700 @@ -175,7 +175,7 @@ def outdebug(ui, message): """debug regarding output stream (bundling)""" - ui.debug(message) + ui.debug('bundle2-output: %s' % message) def validateparttype(parttype): """raise ValueError if a parttype contains invalid character"""