admin管理员组文章数量:1349231
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
1 Answer
Reset to default 9I 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.
本文标签:
版权声明:本文标题:javascript - How to console log in terminal and write in file at the same time with Pino and Express.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743860499a2551646.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论