我为我的 Discord 机器人添加了日志功能,但所有命令都不起作用



我为我的discord bot添加了一个日志功能,之后所有的命令开始不工作

这是我添加的代码:

@client.event
async def on_message(message, ctx):
ts = time.time()
st = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')
with open("logs.txt", "a") as text_file:
print(f"<{st}> <{message.author}> <{message.id}>  {message.content}", file=text_file)

为什么on_message使我的命令停止工作?https://discordpy.readthedocs.io/en/latest/faq.html why-does-on-message-make-my-commands-stop-working

覆盖缺省提供的on_message将禁止运行任何额外的命令。要解决这个问题,在on_message.

的末尾添加一个bot.process_commands(message)

行。考虑使用侦听器。在侦听器设置中,不需要手动调用process_commands()

侦听器文档:https://discordpy.readthedocs.io/en/latest/ext/commands/api.html discord.ext.commands.Bot.listen

在两个文档链接中都提供了示例。

相关内容

  • 没有找到相关文章

最新更新