mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 07:31:07 +00:00
encode.py: log a percentage complete as well as the raw byte counts
This commit is contained in:
parent
08ee80176a
commit
8b14ad1673
@ -384,9 +384,15 @@ class Encoder(object):
|
|||||||
# (shareid, segnum, len(subshare),
|
# (shareid, segnum, len(subshare),
|
||||||
# subshare[:50], subshare[-50:], idlib.b2a(subshare_hash)))
|
# subshare[:50], subshare[-50:], idlib.b2a(subshare_hash)))
|
||||||
self.subshare_hashes[shareid].append(subshare_hash)
|
self.subshare_hashes[shareid].append(subshare_hash)
|
||||||
|
|
||||||
dl = self._gather_responses(dl)
|
dl = self._gather_responses(dl)
|
||||||
def _logit(res):
|
def _logit(res):
|
||||||
log.msg("%s uploaded %s / %s bytes of your file." % (self, self.segment_size*(segnum+1), self.segment_size*self.num_segments))
|
log.msg("%s uploaded %s / %s bytes (%d%%) of your file." %
|
||||||
|
(self,
|
||||||
|
self.segment_size*(segnum+1),
|
||||||
|
self.segment_size*self.num_segments,
|
||||||
|
100 * (segnum+1) / self.num_segments,
|
||||||
|
))
|
||||||
return res
|
return res
|
||||||
dl.addCallback(_logit)
|
dl.addCallback(_logit)
|
||||||
return dl
|
return dl
|
||||||
|
Loading…
Reference in New Issue
Block a user