Changeset cdcff72 for backend/src/main/java/medora/util/JwtUtil.java
- Timestamp:
- 09/04/26 19:36:17 (11 days ago)
- Branches:
- master
- Children:
- 99ab276
- Parents:
- 9af201e
- File:
-
- 1 edited
-
backend/src/main/java/medora/util/JwtUtil.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
backend/src/main/java/medora/util/JwtUtil.java
r9af201e rcdcff72 30 30 public void init() { 31 31 logger.info("JwtUtil initialized - JWT Secret length: {}, Expiration: {}ms", 32 jwtSecret != null ? jwtSecret.length() : 0, jwtExpirationMs);32 jwtSecret != null ? jwtSecret.length() : 0, jwtExpirationMs); 33 33 if (jwtSecret == null || jwtSecret.isEmpty()) { 34 34 logger.error("⚠️ JWT_SECRET is not set or empty!"); … … 123 123 124 124 logger.info("🔐 Validating token - secret hash: {}, secret length: {}, token length: {}", 125 jwtSecret.hashCode(), jwtSecret.length(), token.length());125 jwtSecret.hashCode(), jwtSecret.length(), token.length()); 126 126 127 127 Jwts.parser()
Note:
See TracChangeset
for help on using the changeset viewer.
