diff --git a/src/common/logger/index.ts b/src/common/logger/index.ts index 489e9129..c541c22b 100644 --- a/src/common/logger/index.ts +++ b/src/common/logger/index.ts @@ -3,17 +3,6 @@ import pino from "pino"; const destination = pino.destination({ sync: false }); // Create the logger using the asynchronous destination -const logger = pino( - { - transport: { - target: "pino-pretty", - options: { - colorize: true, - destination: 1 - }, - }, - }, - destination -); +const logger = pino({}, destination); export { logger };