##// END OF EJS Templates
bundle2: add debug info about the number of stream params...
Siddharth Agarwal -
r33123:126eae7d default
parent child Browse files
Show More
@@ -349,7 +349,7 b' def processbundle(repo, unbundler, trans'
349 if repo.ui.debugflag:
349 if repo.ui.debugflag:
350 msg = ['bundle2-input-bundle:']
350 msg = ['bundle2-input-bundle:']
351 if unbundler.params:
351 if unbundler.params:
352 msg.append(' %i params')
352 msg.append(' %i params' % len(unbundler.params))
353 if op.gettransaction is None or op.gettransaction is _notransaction:
353 if op.gettransaction is None or op.gettransaction is _notransaction:
354 msg.append(' no-transaction')
354 msg.append(' no-transaction')
355 else:
355 else:
General Comments 0
You need to be logged in to leave comments. Login now