diff --git a/src/authorization.ts b/src/authorization.ts index 398694c..5a84fe9 100644 --- a/src/authorization.ts +++ b/src/authorization.ts @@ -21,7 +21,7 @@ export async function getAPIKey(key: string): Promise { return cachedKey; } const hashedKey = hashAPIKey(key); - console.log(`In getAPIKey: ${key}, ${hashedKey}`); + console.log(`In getAPIKey: ${hashedKey}`); const apiKey = await APIKey.findOne({ where: { hashed_key: hashedKey } }); HASHER.reset(); if (apiKey !== null) {