mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-18 21:44:22 +00:00
Don't print out the current salt
This commit is contained in:
parent
f983baf5cd
commit
57f917e6df
@ -308,10 +308,8 @@ class Session:
|
|||||||
# 15 minutes before/after the current/next salt end/start time
|
# 15 minutes before/after the current/next salt end/start time
|
||||||
dt = (self.current_salt.valid_until - now).total_seconds() - 900
|
dt = (self.current_salt.valid_until - now).total_seconds() - 900
|
||||||
|
|
||||||
log.debug("Current salt: {} | Next salt in {:.0f}m {:.0f}s ({})".format(
|
log.info("Next salt in {:.0f}m {:.0f}s ({})".format(
|
||||||
self.current_salt.salt,
|
dt // 60, dt % 60,
|
||||||
dt // 60,
|
|
||||||
dt % 60,
|
|
||||||
now + timedelta(seconds=dt)
|
now + timedelta(seconds=dt)
|
||||||
))
|
))
|
||||||
|
|
||||||
@ -340,6 +338,8 @@ class Session:
|
|||||||
packet = None
|
packet = None
|
||||||
|
|
||||||
if packet is None or len(packet) == 4:
|
if packet is None or len(packet) == 4:
|
||||||
|
self.recv_queue.put_nowait(None)
|
||||||
|
|
||||||
if packet:
|
if packet:
|
||||||
log.warning("Server sent \"{}\"".format(Int.read(BytesIO(packet))))
|
log.warning("Server sent \"{}\"".format(Int.read(BytesIO(packet))))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user