removed some logging stuff

This commit is contained in:
2025-10-04 19:34:27 +02:00
parent 6ea1ff799c
commit 23be7e12c7
2 changed files with 0 additions and 2 deletions

View File

@@ -9,7 +9,6 @@ export async function generateToken(payload) {
.setIssuedAt()
.setExpirationTime("2h") // Token valid for 2 hours
.sign(secret);
console.log("Generated token: ", newToken);
return newToken;
}