diff --git a/events/client/interactionCreate.js b/events/client/interactionCreate.js index e420b62..f8eae21 100644 --- a/events/client/interactionCreate.js +++ b/events/client/interactionCreate.js @@ -30,10 +30,10 @@ export default { const isOptOut = await db.optout.findOne({ where: { userID: interaction.user.id } }); if (isOptOut) { - console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with slash`); + console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using slash`); } else { - console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with slash`); + console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using slash`); } diff --git a/events/client/messageCreate.js b/events/client/messageCreate.js index 75cfd18..bd8cd22 100644 --- a/events/client/messageCreate.js +++ b/events/client/messageCreate.js @@ -296,10 +296,10 @@ export default { const isOptOut = await db.optout.findOne({ where: { userID: message.author.id } }); if (isOptOut) { - console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with prefix`); + console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using prefix`); } else { - console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with prefix`); + console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using prefix`); } // Owner only check