Browse Source

reorder logLevel priority

master
ansuz 1 year ago
parent
commit
dde28dfa02
1 changed files with 1 additions and 1 deletions
  1. 2
      lib/log.js

2
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) {

Loading…
Cancel
Save