log4js-node/lib/levels.js

70 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2013-05-30 06:26:03 +08:00
"use strict";
function Level(level, levelStr) {
2013-05-30 06:26:03 +08:00
this.level = level;
this.levelStr = levelStr;
}
/**
* converts given String to corresponding Level
* @param {String} sArg String value of Level OR Log4js.Level
* @param {Log4js.Level} defaultLevel default Level, if no String representation
* @return Level object
* @type Log4js.Level
*/
function toLevel(sArg, defaultLevel) {
2012-05-09 14:40:27 +08:00
if (!sArg) {
2013-05-30 06:26:03 +08:00
return defaultLevel;
}
if (typeof sArg == "string") {
2013-05-30 06:26:03 +08:00
var s = sArg.toUpperCase();
if (module.exports[s]) {
return module.exports[s];
} else {
return defaultLevel;
}
}
return toLevel(sArg.toString());
2013-05-30 06:26:03 +08:00
}
Level.prototype.toString = function() {
2013-05-30 06:26:03 +08:00
return this.levelStr;
};
Level.prototype.isLessThanOrEqualTo = function(otherLevel) {
2013-05-30 06:26:03 +08:00
if (typeof otherLevel === "string") {
otherLevel = toLevel(otherLevel);
}
return this.level <= otherLevel.level;
};
Level.prototype.isGreaterThanOrEqualTo = function(otherLevel) {
2013-05-30 06:26:03 +08:00
if (typeof otherLevel === "string") {
otherLevel = toLevel(otherLevel);
}
return this.level >= otherLevel.level;
};
Level.prototype.isEqualTo = function(otherLevel) {
2013-05-30 06:26:03 +08:00
if (typeof otherLevel == "string") {
otherLevel = toLevel(otherLevel);
}
return this.level === otherLevel.level;
};
module.exports = {
2013-05-30 06:26:03 +08:00
ALL: new Level(Number.MIN_VALUE, "ALL"),
TRACE: new Level(5000, "TRACE"),
DEBUG: new Level(10000, "DEBUG"),
INFO: new Level(20000, "INFO"),
WARN: new Level(30000, "WARN"),
ERROR: new Level(40000, "ERROR"),
FATAL: new Level(50000, "FATAL"),
2014-09-08 18:17:50 +08:00
MARK: new Level(9007199254740992, "MARK"), // 2^53
2013-05-30 06:26:03 +08:00
OFF: new Level(Number.MAX_VALUE, "OFF"),
toLevel: toLevel
};