====== Fastify pino pretty 日志格式 ====== yarn add pino-pretty const server = Fastify({ logger: { level: 'debug', prettyPrint: { translateTime: 'SYS:HH:MM:ss.l', ignore: 'hostname,pid', singleLine: true, } as any, }, }) {{tag>nodejs fastify}}
yarn add pino-pretty
const server = Fastify({ logger: { level: 'debug', prettyPrint: { translateTime: 'SYS:HH:MM:ss.l', ignore: 'hostname,pid', singleLine: true, } as any, }, })