Select the types of activity you want to include in your feed.
1import { Events } from "discord.js"; 2import { Logger } from "../services/Logger.js"; 3 4// When the client is ready, run this code (only once) 5export default { 6 name: Events.Warn, 7 execute(warn) { 8 Logger.warn(warn); 9 }, 10};