Skip to content

Commit

Permalink
chore: delete console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
laquasicinque committed Aug 28, 2024
1 parent 7cb9f14 commit 7f8d1ef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/v2/autorespond/code_parsing/hasVarInSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export function hasVarInSource(source: string): boolean {
ts.ScriptTarget.Latest,
true
);
console.group({ source })
return !!sourceFile.forEachChild(visit);
}

Expand Down
2 changes: 0 additions & 2 deletions src/v2/autorespond/code_parsing/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ export function detectVar(msg: Message): boolean {
return;
}

console.log(msg.content, msg.cleanContent)

const { content, channel, author } = msg;

if (getFirstVar(content)) {
Expand Down

0 comments on commit 7f8d1ef

Please sign in to comment.