PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/pino/test/fixtures

Просмотр файла: transport-with-on-exit.js

'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')
})

Выполнить команду


Для локальной разработки. Не используйте в интернете!