diff --git a/src/commands/info/question.ts b/src/commands/info/question.ts index 0bb50dc3..d14323c3 100644 --- a/src/commands/info/question.ts +++ b/src/commands/info/question.ts @@ -4,7 +4,7 @@ import { interactionService } from '../../services' import RabbitMQ, { Event, Queue as RabbitMQQueue } from '@togethercrew.dev/tc-messagebroker'; import { ChatInputCommandInteraction_broker } from '../../interfaces/Hivemind.interface'; import { handleBigInts, removeCircularReferences } from '../../utils/obj'; -import logger from 'src/config/logger'; +import logger from '../../config/logger'; export default { data: new SlashCommandBuilder() .setName('question') @@ -16,7 +16,7 @@ export default { async execute(interaction: ChatInputCommandInteraction_broker) { try { - logger.debug('Question!!!!!!!!!!!') + logger.info('Question!!!!!!!!!!!') // TogetherCrew-Leads: 983364577096003604 TogetherCrew-Contributors: 983364691692748832 if (!(interaction.member?.roles.cache.has("983364577096003604") || interaction.member?.roles.cache.has("983364691692748832"))) { return await interactionService.createInteractionResponse(interaction, { type: 4, data: { content: 'You do not have the required role to use this command!', flags: 64 } })