From 361e86392ef018b91b495846edd4f4ffa0c6121a Mon Sep 17 00:00:00 2001 From: Jakob Norlin Date: Fri, 3 Oct 2025 00:06:32 +0200 Subject: [PATCH] chore: remove log from oauth-proxy (#5049) --- packages/better-auth/src/plugins/oauth-proxy/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/better-auth/src/plugins/oauth-proxy/index.ts b/packages/better-auth/src/plugins/oauth-proxy/index.ts index 505f2191..97825309 100644 --- a/packages/better-auth/src/plugins/oauth-proxy/index.ts +++ b/packages/better-auth/src/plugins/oauth-proxy/index.ts @@ -231,7 +231,6 @@ export const oAuthProxy = (opts?: OAuthProxyOptions) => { }, handler: createAuthMiddleware(async (ctx) => { const skipProxy = checkSkipProxy(ctx); - console.log("skipProxy", skipProxy); if (skipProxy) { return; }