From fbca1644823acbe4165ad1087db5baed28a6809d Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Sat, 26 Nov 2016 18:12:36 -0300 Subject: [refactor] improve logging Some exceptions were missing a proper description and client_side_db.py script wasn't capturing logs from Twisted. --- client/src/leap/soledad/client/http_target/fetch.py | 2 +- client/src/leap/soledad/client/http_target/fetch_protocol.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src') diff --git a/client/src/leap/soledad/client/http_target/fetch.py b/client/src/leap/soledad/client/http_target/fetch.py index 85e2967d..df07a96a 100644 --- a/client/src/leap/soledad/client/http_target/fetch.py +++ b/client/src/leap/soledad/client/http_target/fetch.py @@ -149,7 +149,7 @@ class HTTPDocFetcher(object): return (metadata['number_of_changes'], metadata['new_generation'], metadata['new_transaction_id']) except (ValueError, KeyError): - raise errors.BrokenSyncStream + raise errors.BrokenSyncStream('Metadata parsing failed') def _emit_receive_status(user_data, received_docs, total): diff --git a/client/src/leap/soledad/client/http_target/fetch_protocol.py b/client/src/leap/soledad/client/http_target/fetch_protocol.py index 3322ec70..fa6b1969 100644 --- a/client/src/leap/soledad/client/http_target/fetch_protocol.py +++ b/client/src/leap/soledad/client/http_target/fetch_protocol.py @@ -136,7 +136,7 @@ class DocStreamReceiver(ReadBodyProtocol): Checks that ']' came and stream was properly closed. """ if not self._properly_finished: - raise errors.BrokenSyncStream() + raise errors.BrokenSyncStream('Stream not properly closed') content = self._buffer.getvalue()[0:self._buffer.tell()] self._buffer.close() return content -- cgit v1.2.3