diff --git a/package.json b/package.json index b2e5240eb..4720e51d6 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "compression": "1.7.4", "cookies": "0.7.3", "cors": "2.8.5", - "date-fns": "1.30.1", + "dayjs": "1.8.13", "express": "4.16.4", "global": "4.3.2", "handlebars": "4.1.2", diff --git a/src/lib/logger.js b/src/lib/logger.js index b1b4f721a..3ad2276fb 100644 --- a/src/lib/logger.js +++ b/src/lib/logger.js @@ -10,7 +10,7 @@ const Stream = require('stream'); const chalk = require('chalk'); const pkgJSON = require('../../package.json'); const _ = require('lodash'); -const { format } = require('date-fns'); +const dayjs = require('dayjs'); /** * Match the level based on buyan severity scale @@ -114,7 +114,7 @@ function setup(logs) { } else if (target.format === 'pretty-timestamped') { // making fake stream for pretty printing stream.write = obj => { - destination.write(`[${format(obj.time, 'YYYY-MM-DD HH:mm:ss')}] ${print(obj.level, obj.msg, obj, destinationIsTTY)}\n`); + destination.write(`[${dayjs(obj.time).format('YYYY-MM-DD HH:mm:ss')}] ${print(obj.level, obj.msg, obj, destinationIsTTY)}\n`); }; } else { stream.write = obj => { diff --git a/yarn.lock b/yarn.lock index 4a5e4df7d..db6d9e1aa 100644 Binary files a/yarn.lock and b/yarn.lock differ