Events vs Audit Logs

What is the preferred way to log actions happening in a guild ? For example if I want to log when a channel is created, should I use Events.ChannelCreate or AuditLogEvent.ChannelCreate ?
4 Replies
d.js toolkit
d.js toolkit10mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
treble/luna
treble/luna10mo ago
ChannelCreate is good for channels i personally use audit logs to listen for bans, role updates, etc
youssef
youssef10mo ago
You listen to Audit Logs when you want to get the executor (and the target in some case's)
Shuttle
Shuttle10mo ago
Thx