mirror of
https://github.com/chatmail/core.git
synced 2026-05-06 16:36:59 +03:00
temporarily replace logging with print
This commit is contained in:
@@ -177,7 +177,8 @@ class Rpc:
|
|||||||
account_id = event["contextId"]
|
account_id = event["contextId"]
|
||||||
queue = self.get_queue(account_id)
|
queue = self.get_queue(account_id)
|
||||||
event = event["event"]
|
event = event["event"]
|
||||||
logging.debug("account_id=%d got an event %s", account_id, event)
|
# logging.debug("account_id=%d got an event %s", account_id, event)
|
||||||
|
print("account_id=%d got an event %s" % (account_id, event))
|
||||||
queue.put(event)
|
queue.put(event)
|
||||||
except Exception:
|
except Exception:
|
||||||
# Log an exception if the event loop dies.
|
# Log an exception if the event loop dies.
|
||||||
|
|||||||
Reference in New Issue
Block a user