Skip to content

Commit c89265f

Browse files
committed
remove leftover logs
1 parent f4779fd commit c89265f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/modules/rep.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ export class RepModule extends Module {
5858

5959
@listener({ event: 'messageReactionAdd' })
6060
async onRepReact(reaction: MessageReaction, user: User) {
61-
console.log(reaction.emoji.id);
6261
if (
6362
!reaction.message.guild ||
6463
user.id === this.client.user?.id ||
@@ -246,7 +245,6 @@ export class RepModule extends Module {
246245
);
247246
const [text, dateMin] = periods[period as keyof typeof periods];
248247
const topEmojis = [':first_place:', ':second_place:', ':third_place:'];
249-
console.log(new Date(dateMin).toISOString());
250248
const query = Rep.createQueryBuilder()
251249
.where(`date > '${new Date(dateMin).toISOString()}'`)
252250
.select(['recipient', 'SUM(amount)', 'MAX(date)'])

0 commit comments

Comments
 (0)