You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.4 KiB
139 lines
3.4 KiB
/* eslint no-underscore-dangle:0 */
|
|
const debug = require("debug")("log4js:logger");
|
|
const LoggingEvent = require("./LoggingEvent");
|
|
const levels = require("./levels");
|
|
const clustering = require("./clustering");
|
|
const categories = require("./categories");
|
|
const configuration = require("./configuration");
|
|
|
|
const stackReg = /at (?:(.+)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/;
|
|
|
|
function defaultParseCallStack(data, skipIdx = 4) {
|
|
const stacklines = data.stack.split("\n").slice(skipIdx);
|
|
const lineMatch = stackReg.exec(stacklines[0]);
|
|
if (lineMatch && lineMatch.length === 6) {
|
|
return {
|
|
functionName: lineMatch[1],
|
|
fileName: lineMatch[2],
|
|
lineNumber: parseInt(lineMatch[3], 10),
|
|
columnNumber: parseInt(lineMatch[4], 10),
|
|
callStack: stacklines.join("\n")
|
|
};
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Logger to log messages.
|
|
* use {@see log4js#getLogger(String)} to get an instance.
|
|
*
|
|
* @name Logger
|
|
* @namespace Log4js
|
|
* @param name name of category to log to
|
|
* @param level - the loglevel for the category
|
|
* @param dispatch - the function which will receive the logevents
|
|
*
|
|
* @author Stephan Strittmatter
|
|
*/
|
|
class Logger {
|
|
constructor(name) {
|
|
if (!name) {
|
|
throw new Error("No category provided.");
|
|
}
|
|
this.category = name;
|
|
this.context = {};
|
|
this.parseCallStack = defaultParseCallStack;
|
|
debug(`Logger created (${this.category}, ${this.level})`);
|
|
}
|
|
|
|
get level() {
|
|
return levels.getLevel(
|
|
categories.getLevelForCategory(this.category),
|
|
levels.TRACE
|
|
);
|
|
}
|
|
|
|
set level(level) {
|
|
categories.setLevelForCategory(
|
|
this.category,
|
|
levels.getLevel(level, this.level)
|
|
);
|
|
}
|
|
|
|
get useCallStack() {
|
|
return categories.getEnableCallStackForCategory(this.category);
|
|
}
|
|
|
|
set useCallStack(bool) {
|
|
categories.setEnableCallStackForCategory(this.category, bool === true);
|
|
}
|
|
|
|
log(level, ...args) {
|
|
let logLevel = levels.getLevel(level);
|
|
if (!logLevel) {
|
|
this._log(levels.WARN, 'log4js:logger.log: invalid value for log-level as first parameter given: ', level);
|
|
logLevel = levels.INFO;
|
|
}
|
|
if (this.isLevelEnabled(logLevel)) {
|
|
this._log(logLevel, args);
|
|
}
|
|
}
|
|
|
|
isLevelEnabled(otherLevel) {
|
|
return this.level.isLessThanOrEqualTo(otherLevel);
|
|
}
|
|
|
|
_log(level, data) {
|
|
debug(`sending log data (${level}) to appenders`);
|
|
const loggingEvent = new LoggingEvent(
|
|
this.category,
|
|
level,
|
|
data,
|
|
this.context,
|
|
this.useCallStack && this.parseCallStack(new Error())
|
|
);
|
|
clustering.send(loggingEvent);
|
|
}
|
|
|
|
addContext(key, value) {
|
|
this.context[key] = value;
|
|
}
|
|
|
|
removeContext(key) {
|
|
delete this.context[key];
|
|
}
|
|
|
|
clearContext() {
|
|
this.context = {};
|
|
}
|
|
|
|
setParseCallStackFunction(parseFunction) {
|
|
this.parseCallStack = parseFunction;
|
|
}
|
|
}
|
|
|
|
function addLevelMethods(target) {
|
|
const level = levels.getLevel(target);
|
|
|
|
const levelStrLower = level.toString().toLowerCase();
|
|
const levelMethod = levelStrLower.replace(/_([a-z])/g, g =>
|
|
g[1].toUpperCase()
|
|
);
|
|
const isLevelMethod = levelMethod[0].toUpperCase() + levelMethod.slice(1);
|
|
|
|
Logger.prototype[`is${isLevelMethod}Enabled`] = function () {
|
|
return this.isLevelEnabled(level);
|
|
};
|
|
|
|
Logger.prototype[levelMethod] = function (...args) {
|
|
this.log(level, ...args);
|
|
};
|
|
}
|
|
|
|
levels.levels.forEach(addLevelMethods);
|
|
|
|
configuration.addListener(() => {
|
|
levels.levels.forEach(addLevelMethods);
|
|
});
|
|
|
|
module.exports = Logger;
|