Files
node-fastify/node_modules/pino/test/fixtures/transport-with-on-exit.js
heiye111 c74f28caa7 one
2025-09-20 21:06:53 +08:00

13 lines
233 B
JavaScript

'use strict'
const pino = require('../..')
const log = pino({
transport: {
target: 'pino/file',
options: { destination: 1 }
}
})
log.info('hello world!')
process.on('exit', (code) => {
log.info('Exiting peacefully')
})