Rev 3691: Include the filename in the debug logging. in http://bzr.arbash-meinel.com/branches/bzr/1.7-dev/sftp_chunked
John Arbash Meinel
john at arbash-meinel.com
Thu Sep 4 04:03:28 BST 2008
At http://bzr.arbash-meinel.com/branches/bzr/1.7-dev/sftp_chunked
------------------------------------------------------------
revno: 3691
revision-id: john at arbash-meinel.com-20080904030327-6smkelvc2rpjk3k6
parent: john at arbash-meinel.com-20080904022255-cmyfd6ykpieggrv7
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: sftp_chunked
timestamp: Wed 2008-09-03 22:03:27 -0500
message:
Include the filename in the debug logging.
-------------- next part --------------
=== modified file 'bzrlib/transport/sftp.py'
--- a/bzrlib/transport/sftp.py 2008-09-04 02:22:55 +0000
+++ b/bzrlib/transport/sftp.py 2008-09-04 03:03:27 +0000
@@ -179,8 +179,9 @@
requests.append((start, next_size))
size -= next_size
start += next_size
- mutter('SFTP.readv() %s offsets => %s coalesced => %s requests',
- len(sorted_offsets), len(coalesced), len(requests))
+ mutter('SFTP.readv(%s) %s offsets => %s coalesced => %s requests',
+ self.relpath, len(sorted_offsets), len(coalesced),
+ len(requests))
return requests
def request_and_yield_offsets(self, fp):
More information about the bazaar-commits
mailing list