Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Node JS bunyan 是否有一个配置参数,每个日志可以分别包含相应的行号、方法和类。
当你初始化 bunyan 时,你可以使用 src: true
bunyan.createLogger({src: true})
它将源文件、行和函数添加到日志记录中
https://www.npmjs.com/package/bunyan#src
使用 {src:true} 选项将让节点跟踪日志来自的文件的完整路径,从而导致执行昂贵的任务。您可以为此实现自己的类并在应用程序的每个模块中启动它。参考我回答的 这个问题,把事情搞清楚github问题
您可以相应地修改内容以添加您想要的其他信息。