Skip to content

Commit

Permalink
Readd debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Sep 30, 2023
1 parent c47db40 commit f78db85
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/checks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ async function respondToText (message: Message, text: string, footer: string) {
for (const test of config.tests) {
let cause: RegExpExecArray | null = null
for (const check of test.checks) {
console.log(`Checking ${check} against ${text}`)
const match = check.exec(text)
if (match != null) {
cause = match
Expand Down

0 comments on commit f78db85

Please sign in to comment.