diff --git a/src/commands/Community/testeadd.js b/src/commands/Community/testeadd.js index 285025b..00e5917 100644 --- a/src/commands/Community/testeadd.js +++ b/src/commands/Community/testeadd.js @@ -75,7 +75,7 @@ module.exports = { if (checkRows.length > 0) { // Já existe um guildId na tabela, você pode retornar uma resposta indicando a duplicação interaction.editReply('❌ Este guildId já está registrado.'); - console.log(checkRows.length); // Log the result + //console.log(checkRows.length); // Log the result } else { // O guildId não existe, podemos prosseguir com a inserção ou outra ação const insertQuery = `INSERT INTO Guilds (guildId,guildownerId) VALUES ('${guildId}','${guildownerId}')`;