最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to console log in terminal and write in file at the same time with Pino and Express.js - Stack Overflow

programmeradmin1浏览0评论

I have this simple function that I created to log whatever happens in my code:

const pino = require('pino')

module.exports = pino({
  transport: {
    target: "pino-pretty",
    options: {
      translateTime: "SYS:dd-mm-yyyy HH:MM:ss",
      ignore: "pid,hostname",
      destination: './logs/logs.txt'
    }
  }
})

The problem with destination. If this option is, pino will write everything in file, not in console, if there is not, will print in console, but not in file. I want to print in console and write logs at the same time.

Is this possible?

I have this simple function that I created to log whatever happens in my code:

const pino = require('pino')

module.exports = pino({
  transport: {
    target: "pino-pretty",
    options: {
      translateTime: "SYS:dd-mm-yyyy HH:MM:ss",
      ignore: "pid,hostname",
      destination: './logs/logs.txt'
    }
  }
})

The problem with destination. If this option is, pino will write everything in file, not in console, if there is not, will print in console, but not in file. I want to print in console and write logs at the same time.

Is this possible?

Share Improve this question asked Feb 20, 2022 at 8:59 dokichandokichan 6414 gold badges22 silver badges58 bronze badges 1
  • 1 see if this helps github./pinojs/pino/issues/1341 – cmgchess Commented Feb 20, 2022 at 9:14
Add a ment  | 

1 Answer 1

Reset to default 9

I know this is old, but I thought I'd drop this in as I'm working with it right now.

transport: {
    targets: [
        {
            level: 'info',
            target: 'pino-pretty',
            options: {}
        },
        {
            level: 'trace',
            target: 'pino/file',
            options: { destination: './pino-logger.log' }
        }
    ],
},

You can set up multiple targets and distinguish which will receive what levels and options. Hope that helps anyone still looking around.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论