我試圖讓溫斯頓靚打印到控制檯上,所以我堅持這樣的文件,並與節點運行它:溫斯頓不漂亮地打印到控制檯
var winston = require('winston');
winston.cli();
winston.data({
a: "test",
of: "many",
properties: {
like: "this"
}
});
winston.data('data', {
a: "test",
of: "many",
properties: {
like: "this"
}
});
終端回吐以下(不完全漂亮)消息:
data: a=test, of=many, like=this
data: data a=test, of=many, like=this
我下面(「在CLI工具使用溫斯頓」)在Winston Readme的說明。我誤讀了什麼嗎?在某處丟失設置?
不應水平的數字是按相反的順序?例如。錯誤= 0和跟蹤= 9 https://github.com/winstonjs/winston#logging-levels – Lukas
這不適用於自定義格式化程序。 – theusguy