From dde28dfa02e05ffbeb14addafad0cfefee3c597b Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 11 Apr 2019 11:23:22 +0200 Subject: [PATCH] reorder logLevel priority --- lib/log.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/log.js b/lib/log.js index f8aad4978..31c98c4f5 100644 --- a/lib/log.js +++ b/lib/log.js @@ -19,7 +19,7 @@ var write = function (ctx, content) { }; // various degrees of logging -const logLevels = ['silly', 'debug', 'verbose', 'feedback', 'info', 'warn', 'error']; +const logLevels = ['silly', 'verbose', 'debug', 'feedback', 'info', 'warn', 'error']; var handlers = { silly: function (ctx, time, tag, info) {