Fix logging

This commit is contained in:
Luke Murphy 2021-01-15 21:14:28 +01:00
parent af292c45bf
commit d589f6cd7e
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ class Bot(ClientXMPP):
def reply(self, body, to=None, room=None):
"""Send back a reply."""
if to is None and room is None:
self.log("`to` or `room` arguments required for `reply`")
self.log.info("`to` or `room` arguments required for `reply`")
exit(1)
if to is not None and room is not None: