Skip to content

Commit

Permalink
fix: Remove stray console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
amaury1093 committed Dec 13, 2023
1 parent 036a7e4 commit 3870082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/v0/check_email/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ export async function POST(req: NextRequest): Promise<Response> {
console.log(`[🐢] Final response: ${Math.round(d11)}ms`);
return finalRes;
} catch (err) {
console.log("AAA", err);
if (isEarlyResponse(err)) {
return err.response;
}
Expand All @@ -239,6 +238,7 @@ async function getVerifMethod(input: CheckEmailInput): Promise<string> {
if (!domain) {
return "Smtp";
}
console.log(`[🔧] Checking email ***@${domain}`);

const records = await dns.resolveMx(domain);
if (
Expand Down

1 comment on commit 3870082

@vercel
Copy link

@vercel vercel bot commented on 3870082 Dec 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.