nestlogged/dist/lib/logger.js
2024-01-10 00:54:02 +09:00

30 lines
1.1 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScopedLogger = void 0;
const common_1 = require("@nestjs/common");
const hyperid = require("hyperid");
const createId = hyperid({ fixedLength: true });
class ScopedLogger extends common_1.Logger {
constructor(logger, scope, root = false, createScopeId = false) {
super();
this.logger = logger;
this.scope = scope;
this.root = root;
this.createScopeId = createScopeId;
this.debug = this.scopedLog("debug");
this.log = this.scopedLog("log");
this.warn = this.scopedLog("warn");
this.verbose = this.scopedLog("verbose");
this.error = this.scopedLog("error");
this.fatal = this.scopedLog("fatal");
if (this.createScopeId)
this.scopeId = createId();
}
scopedLog(method) {
return (message) => {
this.logger[method](`${this.root ? "" : "-> "}${this.scope}${this.scopeId ? `(${this.scopeId})` : ""}: ${message}`);
};
}
}
exports.ScopedLogger = ScopedLogger;