refactor(deltachat-rpc-client): remove print() calls

This commit is contained in:
link2xt
2023-10-07 23:50:38 +00:00
parent b360225e08
commit 09798df7a0
2 changed files with 1 additions and 2 deletions

View File

@@ -54,7 +54,6 @@ class ACFactory:
account.start_io()
while True:
event = account.wait_for_event()
print(event)
if event.type == EventType.IMAP_INBOX_IDLE:
break
return account

View File

@@ -97,7 +97,7 @@ class Rpc:
self.request_results[response_id] = response
event.set()
else:
print(response)
logging.warning("Got a response without ID: %s", response)
except Exception:
# Log an exception if the reader loop dies.
logging.exception("Exception in the reader loop")