This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

remove unuseful log

-5
-5
src/modules/user/infrastructure/services/JwtTokenService.ts
··· 59 59 async validateToken(token: string): Promise<Result<string | null>> { 60 60 try { 61 61 const decoded = jwt.verify(token, this.jwtSecret) as { did: string }; 62 - if (ENABLE_AUTH_LOGGING) { 63 - console.log( 64 - `[JwtTokenService] Token validation successful for user: ${decoded.did}`, 65 - ); 66 - } 67 62 return ok(decoded.did); 68 63 } catch (error: any) { 69 64 if (ENABLE_AUTH_LOGGING) {