Files
QR-Invoice/node_modules/pino/test/fixtures/transport-with-on-exit.js
2026-01-12 13:12:46 +01: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')
})