🩹 revert development changes

This commit is contained in:
Axel Olausson Holtenäs 2022-06-10 22:31:40 +02:00
parent e93f604273
commit 766dac5c98
No known key found for this signature in database
GPG key ID: 7BF6826B76382CBA
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,8 @@
import { CommandInteraction } from "discord.js"; import { CommandInteraction } from "discord.js";
import logger from "../../../logger";
export const metadata = { guildOnly: false, ephemeral: false }; export const metadata = { guildOnly: false, ephemeral: false };
export const execute = async (interaction: CommandInteraction) => { export const execute = async (interaction: CommandInteraction) => {
console.log("primary button clicked!"); logger.debug("primary button clicked!");
}; };

View file

@ -15,7 +15,7 @@ export const options: IEventOptions = {
export const execute = async (oldMessage: Message, newMessage: Message) => { export const execute = async (oldMessage: Message, newMessage: Message) => {
const { author, guild } = newMessage; const { author, guild } = newMessage;
// await audits.execute(oldMessage, newMessage); await audits.execute(oldMessage, newMessage);
logger?.silly( logger?.silly(
`Message update event fired by ${author.tag} (${author.id}) in guild: ${guild?.name} (${guild?.id})` `Message update event fired by ${author.tag} (${author.id}) in guild: ${guild?.name} (${guild?.id})`