Skip to content

Commit

Permalink
Change loglevel to DEBUG for rejected invites.
Browse files Browse the repository at this point in the history
  • Loading branch information
svierne committed Dec 28, 2023
1 parent fb87d88 commit 1c0537d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matrix_reminder_bot/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def invite(self, room: MatrixRoom, event: InviteMemberEvent):

# Don't respond to invites from disallowed users
if not is_allowed_user(event.sender):
logger.info(f"{event.sender} is not allowed, not responding to invite.")
logger.debug(f"{event.sender} is not allowed, not responding to invite.")
return

# Attempt to join 3 times before giving up
Expand Down

0 comments on commit 1c0537d

Please sign in to comment.