Reverse log levels

This commit is contained in:
Isaac Murchie
2016-03-21 14:55:27 -07:00
parent 0d26da6115
commit ebc765795c
+4 -4
View File
@@ -12,10 +12,10 @@ global._global_npmlog = npmlog;
// npmlog is used only for emitting, we use winston for output
npmlog.level = "silent";
const levels = {
debug: 1,
info: 2,
warn: 3,
error: 4,
debug: 4,
info: 3,
warn: 2,
error: 1,
};
const colors = {