UNPKG

triviality-logger

Version:

Typescript loggers with an interface that support composition

37 lines 1.56 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var AbstractLogLevelLogger_1 = require("./AbstractLogLevelLogger"); var CollectionLogger = /** @class */ (function (_super) { __extends(CollectionLogger, _super); function CollectionLogger(loggers) { var _this = _super.call(this) || this; _this.loggers = loggers; return _this; } CollectionLogger.prototype.log = function (type, message) { var optionalParams = []; for (var _i = 2; _i < arguments.length; _i++) { optionalParams[_i - 2] = arguments[_i]; } for (var _a = 0, _b = this.loggers; _a < _b.length; _a++) { var logger = _b[_a]; logger.log.apply(logger, [type, message].concat(optionalParams)); } }; return CollectionLogger; }(AbstractLogLevelLogger_1.AbstractLogLevelLogger)); exports.CollectionLogger = CollectionLogger; //# sourceMappingURL=CollectionLogger.js.map