Discord审核日志 - 从频道删除 我试图做自己的Discord Bot日志,我有一个LIL问题,即从Discord.py中的Discord Channel中删除人。当管理员从频道踢某人时,在审核日志中,只有se ...

问题描述 投票:0回答:1

检查服务器设置中的实际审核日志,以确保您要寻找的审核日志条目实际上存在。如果管理员从语音中踢了某人,则该事件应出现在官方服务器审核日志中。如果它不在服务器审核日志中,那么机器人将无法看到它。

logging discord discord.py audit-logging
1个回答
0
投票
正确观察的事件是
  1. member_disconnect

    。没有显示您的代码,我们就不能说您为什么不看到这一点。
  2. @bot.event async def on_audit_log_entry_create(entry): if entry.action == discord.AuditLogAction.member_disconnect: print(f"{entry.user} disconnected {entry.target} from a voice channel at {entry.created_at}")

    如果您运行它,并且您仍然看不到,那么您应该让我们知道。
        

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.