feat(api): add more clerk logs
All checks were successful
Build and Push Docker Image / tests (push) Successful in 4m3s
Build and Push Docker Image / build (push) Successful in 6m5s

This commit is contained in:
Lars Hampe 2024-10-02 21:30:21 +02:00
parent 2194bcc9ee
commit 8ebb1c95dc

View File

@ -1,4 +1,5 @@
import { db, user } from '@boring.tools/database'
import { logger } from '@boring.tools/logger'
import { UserOutput, UserWebhookInput } from '@boring.tools/schema'
import { createRoute, type z } from '@hono/zod-openapi'
import { HTTPException } from 'hono/http-exception'
@ -50,8 +51,10 @@ const userCreate = async ({
set: data,
})
logger.info('Clerk webhook user created', payload.data)
return true
} catch (error) {
logger.error('Clerk webhook user create failed', error)
return false
}
}