We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469acc2 commit cb0b74eCopy full SHA for cb0b74e
1 file changed
apps/builder/app/services/auth-strategy/ws.server.ts
@@ -18,7 +18,10 @@ const asyncLocalStorage = new AsyncLocalStorage<
18
>();
19
20
// remix-auth-oauth2 logs OAuth state, PKCE verifier, and full callback URLs.
21
-createDebugRaw.enable(`${createDebugRaw.disable()},-OAuth2Strategy`);
+// Match both the exact namespace and any prefixed namespace enabled by DEBUG=*.
22
+createDebugRaw.enable(
23
+ `${createDebugRaw.disable()},-OAuth2Strategy,-*OAuth2Strategy*`
24
+);
25
26
/**
27
* The main issue with OAuth2Strategy is that it forces us to define authorizationEndpoint, tokenEndpoint, and redirectURI
0 commit comments