Skip to content

Commit

Permalink
chore(CAHN Demo Server): 🔥 remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
A9-dev committed Sep 5, 2024
1 parent 257194d commit 1803e41
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/cahn_demo/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,6 @@ async function getUsersByPattern(filePath, regexPattern) {
for (const line of lines) {
let match;
while ((match = regexPattern.exec(line)) !== null) {
console.log("match :>> ", match);
users.push(match[4].replace(/['"]+/g, ""));
}
}
Expand Down

0 comments on commit 1803e41

Please sign in to comment.