alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
remove unuseful log
author
Wesley Finck
date
8 months ago
(Nov 11, 2025, 10:01 AM -0500)
commit
d5a34617
d5a346175b700cd9823467da18f2aca347f6de5a
parent
56c87070
56c870709334b024e38e89a2de006c492ee33db1
-5
1 changed file
Expand all
Collapse all
Unified
Split
src
modules
user
infrastructure
services
JwtTokenService.ts
-5
src/modules/user/infrastructure/services/JwtTokenService.ts
View file
Reviewed
···
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
62
-
if (ENABLE_AUTH_LOGGING) {
63
63
-
console.log(
64
64
-
`[JwtTokenService] Token validation successful for user: ${decoded.did}`,
65
65
-
);
66
66
-
}
67
62
return ok(decoded.did);
68
63
} catch (error: any) {
69
64
if (ENABLE_AUTH_LOGGING) {