Don't log since end-user might have implemented

This commit is contained in:
Luke Murphy 2021-01-15 21:21:07 +01:00
parent 7dd96a9f30
commit c1c778af66
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 0 additions and 4 deletions

View File

@ -341,8 +341,6 @@ class Bot(ClientXMPP):
self.reply(self.help, **kwargs)
except AttributeError:
self.reply("No help found 🤔️", **kwargs)
else:
self.log.error(f"'{command}' command is not recognised")
def meta(self, message, **kwargs):
"""Handle "/" style commands with built-in responses."""
@ -350,8 +348,6 @@ class Bot(ClientXMPP):
if command == "bots":
self.reply("🖐️", **kwargs)
else:
self.log.error(f"'{command}' command is not recognised")
class EchoBot(Bot):