nodejs bunyan元素顺序
nodejs bunyan order of elements
我正在使用 bunyan,这是我在日志中所写内容的示例。
有没有办法改变打印字段的顺序?来自:
{"name":"appName","hostname":"ip","pid":5817,"level":30,"msg":"message","time":"2015-10-15T19:04:01.596Z","v":0 }
为此:
{"时间":"2015-10-15T19:04:01.596Z","msg":"message","name":"appName","hostname":"ip","pid":5817,"level":30,"v":0 }
使用 bunyan cli 获取更易于阅读的日志。
一种选择是在您启动应用程序时仅通过管道传输 bunyan(假设您是 运行 从您的根目录开始的)
$ node app.js | ./node_modules/.bin/bunyan
一个非常短的版本是用管道
$ node app.js | ./node_modules/.bin/bunyan -o short
四处搜索,bunyan CLI 的功能非常强大。
我正在使用 bunyan,这是我在日志中所写内容的示例。
有没有办法改变打印字段的顺序?来自:
{"name":"appName","hostname":"ip","pid":5817,"level":30,"msg":"message","time":"2015-10-15T19:04:01.596Z","v":0 }
为此:
{"时间":"2015-10-15T19:04:01.596Z","msg":"message","name":"appName","hostname":"ip","pid":5817,"level":30,"v":0 }
使用 bunyan cli 获取更易于阅读的日志。
一种选择是在您启动应用程序时仅通过管道传输 bunyan(假设您是 运行 从您的根目录开始的)
$ node app.js | ./node_modules/.bin/bunyan
一个非常短的版本是用管道
$ node app.js | ./node_modules/.bin/bunyan -o short
四处搜索,bunyan CLI 的功能非常强大。