Fix log level

This commit is contained in:
Luke Murphy 2021-01-16 12:50:29 +01:00
parent 17773e9b86
commit d209ffdefd
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,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.info("`to` or `room` arguments required for `reply`")
self.log.error("`to` or `room` arguments required for `reply`")
exit(1)
if to is not None and room is not None: