From 3870082fc004baf2d1bc492c1fc68cb7db9bfec7 Mon Sep 17 00:00:00 2001 From: Amaury <1293565+amaury1729@users.noreply.github.com> Date: Wed, 13 Dec 2023 12:06:18 +0100 Subject: [PATCH] fix: Remove stray console.log --- src/app/api/v0/check_email/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/v0/check_email/route.ts b/src/app/api/v0/check_email/route.ts index 7351eff8..f360eb09 100644 --- a/src/app/api/v0/check_email/route.ts +++ b/src/app/api/v0/check_email/route.ts @@ -214,7 +214,6 @@ export async function POST(req: NextRequest): Promise { console.log(`[🐢] Final response: ${Math.round(d11)}ms`); return finalRes; } catch (err) { - console.log("AAA", err); if (isEarlyResponse(err)) { return err.response; } @@ -239,6 +238,7 @@ async function getVerifMethod(input: CheckEmailInput): Promise { if (!domain) { return "Smtp"; } + console.log(`[🔧] Checking email ***@${domain}`); const records = await dns.resolveMx(domain); if (