From 8daa1fe67924ffb10b52b39308255b72232adeb4 Mon Sep 17 00:00:00 2001 From: Glenn Dirkx Date: Thu, 15 Dec 2016 12:54:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B4=20default=20date=20formatter=20pri?= =?UTF-8?q?nted=20month=20instead=20of=20minutes.=20am=20idiot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 0f9ec3a..57a755c 100644 --- a/index.js +++ b/index.js @@ -26,7 +26,7 @@ module.exports.options = { }, // a function that takes a date and returns a string // used to print the date in the prefix - dateFormatter: date => moment(date).format("D/M/YY HH:MM:ss.SSS") + dateFormatter: date => moment(date).format("D/M/YY HH:mm:ss.SSS") } var getLogTypePrefix = type => ` [${type}] ${module.exports.options.typePadding.substring(stringz.length(type) + 4)}`;