Skip to content

Commit 37c771d

Browse files
committed
temporarily replace logging with print
1 parent 72df950 commit 37c771d

File tree

1 file changed

+2
-1
lines changed
  • deltachat-rpc-client/src/deltachat_rpc_client

1 file changed

+2
-1
lines changed

deltachat-rpc-client/src/deltachat_rpc_client/rpc.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ def events_loop(self) -> None:
177177
account_id = event["contextId"]
178178
queue = self.get_queue(account_id)
179179
event = event["event"]
180-
logging.debug("account_id=%d got an event %s", account_id, event)
180+
# logging.debug("account_id=%d got an event %s", account_id, event)
181+
print("account_id=%d got an event %s" % (account_id, event))
181182
queue.put(event)
182183
except Exception:
183184
# Log an exception if the event loop dies.

0 commit comments

Comments
 (0)