Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardozgz committed Jan 20, 2023
1 parent e766734 commit fc216a7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/utils/commandHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,6 @@ export default async (message: Eris.Message) => {
.trim();
const [commandNameRequested] = commandRequestedWithoutPrefix.split(" ");

console.log(commandNameRequested);


for (const command of commands) {
// stop current iteration if there is no matching alias with requested command
if (!command.aliases.some(alias => alias.toLowerCase() === commandNameRequested)) continue;
Expand Down

0 comments on commit fc216a7

Please sign in to comment.