style(error/command): Changing the message error

The name will not have the command name at the start
(already seen in the catch message)
This commit is contained in:
Raphael 2025-08-16 22:10:15 +02:00
parent 1241332561
commit 08dae4f787
6 changed files with 13 additions and 17 deletions

View file

@ -101,7 +101,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -116,7 +116,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | Owner => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral

View file

@ -38,7 +38,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | Buyer => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -53,7 +53,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -222,7 +222,7 @@ export default {
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
}); });
} catch (err) { } catch (err) {
console.error(`⚠️ | Buyer => error when fetching infromation from the database: ${err}`); console.error(`⚠️ | error when fetching infromation from the database: ${err}`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot fetch the infromation of the database.`, content: `${emoji.answer.error} | Cannot fetch the infromation of the database.`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral

View file

@ -38,7 +38,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | Owner => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -53,7 +53,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -212,7 +212,7 @@ export default {
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
}); });
} catch (err) { } catch (err) {
console.error(`⚠️ | Buyer => error when fetching infromation from the database: ${err}`); console.error(`⚠️ | error when fetching infromation from the database: ${err}`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot fetch the infromation of the database.`, content: `${emoji.answer.error} | Cannot fetch the infromation of the database.`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral

View file

@ -53,7 +53,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral

View file

@ -67,7 +67,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -87,7 +87,7 @@ export default {
} }
}); });
} catch (err) { } catch (err) {
console.error(`\t⚠ | USERINFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`, content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral
@ -98,7 +98,7 @@ export default {
try { try {
targetServer = await interaction.guild.members.fetch(targetGlobal.id); targetServer = await interaction.guild.members.fetch(targetGlobal.id);
} catch (err) { } catch (err) {
console.error(`\t⚠ | USERINFO => Cannot get the targetServer!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the targetServer!\n\t\t(${err}).`);
await interaction.reply({ await interaction.reply({
content: `${emoji.answer.error} | Cannot get the guild profile of the user`, content: `${emoji.answer.error} | Cannot get the guild profile of the user`,
flags: MessageFlags.Ephemeral flags: MessageFlags.Ephemeral

View file

@ -67,11 +67,7 @@ export default {
}); });
} }
} catch (err) { } catch (err) {
console.error(`\t⚠ | INFO => Cannot get the database connection!\n\t\t(${err}).`); console.error(`\t⚠ | Cannot get the database connection!\n\t\t(${err}).`);
await interaction.reply({
content: `${emoji.answer.error} | Cannot connect to the database`,
flags: MessageFlags.Ephemeral
});
return; return;
} }
console.log(`✅ | ${client.user.username} is now running under TTS bot`); console.log(`✅ | ${client.user.username} is now running under TTS bot`);