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", });