chore: disable debug log of fastify
This commit is contained in:
parent
f9549e1f1b
commit
428d39a460
|
@ -73,7 +73,7 @@ export class ServerService implements OnApplicationShutdown {
|
||||||
public async launch(): Promise<void> {
|
public async launch(): Promise<void> {
|
||||||
const fastify = Fastify({
|
const fastify = Fastify({
|
||||||
trustProxy: true,
|
trustProxy: true,
|
||||||
logger: !['production', 'test'].includes(process.env.NODE_ENV ?? ''),
|
logger: false,
|
||||||
});
|
});
|
||||||
this.#fastify = fastify;
|
this.#fastify = fastify;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue