From d70ec6c720f20ab1b646585b020e17c03660255f Mon Sep 17 00:00:00 2001 From: Steve Korshakov Date: Sat, 12 Jul 2025 20:09:02 -0700 Subject: [PATCH] feat: add logger --- sources/app/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/app/api.ts b/sources/app/api.ts index 570f5a7..5795620 100644 --- a/sources/app/api.ts +++ b/sources/app/api.ts @@ -33,6 +33,7 @@ export async function startApi() { // Start API const app = fastify({ + logger: true, bodyLimit: 1024 * 1024 * 100, // 100MB }); app.register(require('@fastify/cors'), {