From 670eac44be1a82a8551c9410c12b519a54ddc3fe Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sat, 6 Aug 2022 09:36:40 +0000 Subject: [PATCH] debug log --- apps/api/src/routes/api/v1/destinations/handlers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/src/routes/api/v1/destinations/handlers.ts b/apps/api/src/routes/api/v1/destinations/handlers.ts index 81fcaf28e..7662d474c 100644 --- a/apps/api/src/routes/api/v1/destinations/handlers.ts +++ b/apps/api/src/routes/api/v1/destinations/handlers.ts @@ -30,6 +30,7 @@ export async function listDestinations(request: FastifyRequest destinations } } catch ({ status, message }) { + console.log({status, message}) return errorHandler({ status, message }) } }