mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-11 14:24:19 -05:00
Remove spurious log level guards
This commit is contained in:
parent
7fb80b5eae
commit
d668caa79c
@ -334,7 +334,6 @@ class RulesForRoom(object):
|
|||||||
if membership == Membership.JOIN
|
if membership == Membership.JOIN
|
||||||
)
|
)
|
||||||
|
|
||||||
if logger.isEnabledFor(logging.DEBUG):
|
|
||||||
logger.debug("Joined: %r", interested_in_user_ids)
|
logger.debug("Joined: %r", interested_in_user_ids)
|
||||||
|
|
||||||
if_users_with_pushers = yield self.store.get_if_users_have_pushers(
|
if_users_with_pushers = yield self.store.get_if_users_have_pushers(
|
||||||
@ -346,14 +345,12 @@ class RulesForRoom(object):
|
|||||||
uid for uid, have_pusher in if_users_with_pushers.iteritems() if have_pusher
|
uid for uid, have_pusher in if_users_with_pushers.iteritems() if have_pusher
|
||||||
)
|
)
|
||||||
|
|
||||||
if logger.isEnabledFor(logging.DEBUG):
|
|
||||||
logger.debug("With pushers: %r", user_ids)
|
logger.debug("With pushers: %r", user_ids)
|
||||||
|
|
||||||
users_with_receipts = yield self.store.get_users_with_read_receipts_in_room(
|
users_with_receipts = yield self.store.get_users_with_read_receipts_in_room(
|
||||||
self.room_id, on_invalidate=self.invalidate_all_cb,
|
self.room_id, on_invalidate=self.invalidate_all_cb,
|
||||||
)
|
)
|
||||||
|
|
||||||
if logger.isEnabledFor(logging.DEBUG):
|
|
||||||
logger.debug("With receipts: %r", users_with_receipts)
|
logger.debug("With receipts: %r", users_with_receipts)
|
||||||
|
|
||||||
# any users with pushers must be ours: they have pushers
|
# any users with pushers must be ours: they have pushers
|
||||||
|
Loading…
Reference in New Issue
Block a user