Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions backend/src/events/messageReactionAdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ export function registerMessageReactionAddHandler(client: Client): void {
return;
}

console.log(
`🔍 Detected :dojo: reaction from ${user.tag} (${user.id}) on message ${reaction.message.id}`
);

// Get the message and author
const message = reaction.message;
const messageAuthorId = message.author?.id;
Expand Down
3 changes: 0 additions & 3 deletions backend/src/services/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ export async function insertReaction(
VALUES (${messageId}, ${messageAuthorId}, ${reactorId}, ${reactorRole}, ${timestamp})
`;

console.debug(
`Inserted reaction: ${reactorId} (${reactorRole}) -> ${messageAuthorId} on message ${messageId}`
);
return true;
} catch (error: unknown) {
// PostgreSQL unique violation error code
Expand Down