From 32e5d3bb8db611541cc89904632901d80514c3cb Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Tue, 12 Nov 2024 21:56:49 +0100 Subject: [PATCH] feat(api): add log on authentication error --- apps/api/src/utils/authentication.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/utils/authentication.ts b/apps/api/src/utils/authentication.ts index 250037a..cf1adb8 100644 --- a/apps/api/src/utils/authentication.ts +++ b/apps/api/src/utils/authentication.ts @@ -1,4 +1,5 @@ import { access_token, db, user } from '@boring.tools/database' +import { logger } from '@boring.tools/logger' import { clerkMiddleware, getAuth } from '@hono/clerk-auth' import { eq } from 'drizzle-orm' import type { Context, Next } from 'hono' @@ -52,6 +53,7 @@ export const verifyAuthentication = async (c: Context) => { .where(eq(user.providerId, auth.userId)) if (!userEntry) { + logger.error('User not found - Unauthorized', { providerId: auth.userId }) throw new HTTPException(401, { message: 'Unauthorized' }) }