From e98a5b1a028f3a73c2186ba809ccad1dfb1c66d8 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 27 Dec 2025 06:51:58 +0100 Subject: [PATCH] print cwd in jwt --- src/util/util/Token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/util/Token.ts b/src/util/util/Token.ts index b615f5bbb..ba5d427da 100644 --- a/src/util/util/Token.ts +++ b/src/util/util/Token.ts @@ -227,7 +227,7 @@ export async function loadOrGenerateKeypair() { privateKey = crypto.createPrivateKey(loadedPrivateKey); publicKey = crypto.createPublicKey(loadedPublicKey); } else { - console.log("[JWT] Generating new keypair:", path.resolve("jwt.key")); + console.log("[JWT] Generating new keypair:", path.resolve("jwt.key"), "- PWD:", process.cwd()); const res = crypto.generateKeyPairSync("ec", { namedCurve: "secp521r1", });