Add debug log for generated token in LoginController.

This commit is contained in:
akastijn 2025-07-06 19:39:46 +02:00
parent aef32a8982
commit 5d8ab2deef

View File

@ -95,6 +95,7 @@ public class LoginController implements LoginApi {
} }
String token = generateToken(cacheEntry.uuid); String token = generateToken(cacheEntry.uuid);
log.debug("Generated token for user {} with token {}", cacheEntry.uuid, token);
cache.remove(code); cache.remove(code);