diff --git a/src/whitelist.js b/src/whitelist.js index c7e1e7d..fe23eb1 100644 --- a/src/whitelist.js +++ b/src/whitelist.js @@ -20,6 +20,7 @@ export const isInWhiteList = async (filename, email) => { // ('\r\n') in input as a single line break. for await (const line of rl) { + console.log("AAAA " + line); if (email.trim() === line) { return true; }