fix: better logger

This commit is contained in:
Steve Korshakov 2025-08-26 20:48:27 -07:00
parent 25724eac23
commit 4040325524

View File

@ -63,6 +63,7 @@ export async function startApi(): Promise<{ app: FastifyInstance; io: Server }>
// Start API // Start API
const app = fastify({ const app = fastify({
logger: true, logger: true,
loggerInstance: logger,
bodyLimit: 1024 * 1024 * 100, // 100MB bodyLimit: 1024 * 1024 * 100, // 100MB
}); });
app.register(import('@fastify/cors'), { app.register(import('@fastify/cors'), {
@ -2501,5 +2502,5 @@ export async function startApi(): Promise<{ app: FastifyInstance; io: Server }>
await io.close(); await io.close();
}); });
return { app, io }; return { app: app as unknown as FastifyInstance, io };
} }