Skip to content

Commit

Permalink
Remove some debugging I added earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
dowski committed Nov 26, 2024
1 parent 6582dd7 commit e6d9b6e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/server/implementation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,22 +232,18 @@ export function convexAuth(config_: ConvexAuthConfig) {
const provider = getProviderOrThrow(
providerId,
) as OAuthConfig<any>;
logWithLevel("DEBUG", `\`api/auth/signin/\` with ${url}, ${pathParts}, ${providerId}`);
const { redirect, cookies, signature } =
await getAuthorizationUrl(
{
provider: await oAuthConfigToInternalProvider(provider),
cookies: defaultCookiesOptions(providerId),
},
);
logWithLevel("DEBUG", `\`api/auth/signin/\` got authorization URL`);

await callVerifierSignature(ctx, {
verifier,
signature,
});
logWithLevel("DEBUG", `\`api/auth/signin/\` called verifier signature`);


const redirectTo = url.searchParams.get("redirectTo");

Expand Down

0 comments on commit e6d9b6e

Please sign in to comment.