Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
carafelix committed Nov 27, 2024
1 parent 73d5bab commit 5fba540
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ export class Command<C extends Context = Context> implements MiddlewareObj<C> {
if (targetedCommands === "ignored" && username) continue;
if (targetedCommands === "required" && !username) continue;
if (username && username !== ctx.me.username) continue;
console.log(command.replace(prefix, ""));
if (
commandNames.some((name) =>
matchesPattern(
Expand Down

0 comments on commit 5fba540

Please sign in to comment.