remove arrow separator

This commit is contained in:
tb-killa
2018-08-13 19:21:55 +02:00
committed by Koenkk
parent 8411c0b30d
commit 08f64b96be
+1 -1
View File
@@ -28,7 +28,7 @@ const logger = new (winston.Logger)({
timestamp: () => new Date().toLocaleString(),
formatter: function(options) {
return winston.config.colorize(options.level, ' zigbee2mqtt:' + options.level.toLowerCase()) + ' ' +
options.timestamp() + ' --> ' + (options.message ? options.message : '') +
options.timestamp() + ' ' + (options.message ? options.message : '') +
(options.meta && Object.keys(options.meta).length ? '\n\t'+ JSON.stringify(options.meta) : '' );
},
}),