mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
this shouldn't be debug
This commit is contained in:
parent
bd769a81e1
commit
c46a0d7eb4
@ -218,14 +218,14 @@ class RoomMemberHandler(BaseHandler):
|
|||||||
)
|
)
|
||||||
if not is_requester_admin:
|
if not is_requester_admin:
|
||||||
if self.hs.config.block_non_admin_invites:
|
if self.hs.config.block_non_admin_invites:
|
||||||
logger.debug(
|
logger.info(
|
||||||
"Blocking invite: user is not admin and non-admin "
|
"Blocking invite: user is not admin and non-admin "
|
||||||
"invites disabled"
|
"invites disabled"
|
||||||
)
|
)
|
||||||
block_invite = True
|
block_invite = True
|
||||||
|
|
||||||
if not self.spam_checker.user_may_invite(requester.user):
|
if not self.spam_checker.user_may_invite(requester.user):
|
||||||
logger.debug("Blocking invite due to spam checker")
|
logger.info("Blocking invite due to spam checker")
|
||||||
block_invite = True
|
block_invite = True
|
||||||
|
|
||||||
if block_invite:
|
if block_invite:
|
||||||
|
Loading…
Reference in New Issue
Block a user