add logging on downloader start
This commit is contained in:
parent
ffb48ef287
commit
993d606bc6
1 changed files with 2 additions and 0 deletions
|
@ -99,6 +99,7 @@ class ManagedEncryptedFileDownloader(EncryptedFileSaver):
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def _start(self):
|
def _start(self):
|
||||||
|
log.info('Starting Downloader for %s', self.stream_hash)
|
||||||
yield EncryptedFileSaver._start(self)
|
yield EncryptedFileSaver._start(self)
|
||||||
sd_hash = yield self.stream_info_manager.get_sd_blob_hashes_for_stream(self.stream_hash)
|
sd_hash = yield self.stream_info_manager.get_sd_blob_hashes_for_stream(self.stream_hash)
|
||||||
if len(sd_hash):
|
if len(sd_hash):
|
||||||
|
@ -110,6 +111,7 @@ class ManagedEncryptedFileDownloader(EncryptedFileSaver):
|
||||||
self.txid = txid
|
self.txid = txid
|
||||||
self.nout = nout
|
self.nout = nout
|
||||||
status = yield self._save_status()
|
status = yield self._save_status()
|
||||||
|
log.info('Set Downloader status for %s to %s', self.stream_hash, status)
|
||||||
defer.returnValue(status)
|
defer.returnValue(status)
|
||||||
|
|
||||||
def _get_finished_deferred_callback_value(self):
|
def _get_finished_deferred_callback_value(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue