UNPKG

ts-debug

Version:

Configurable console wrapper for Typescript

222 lines (221 loc) 8.36 kB
var Debugger = /** @class */ (function () { function Debugger(console, isEnabled, prefix) { if (isEnabled === void 0) { isEnabled = true; } if (prefix === void 0) { prefix = ''; } this.prefix = ''; this.console = console; this.isEnabled = isEnabled; this.prefix = prefix; } Object.defineProperty(Debugger.prototype, "memory", { get: function () { return this.doIfEnabled(function () { return console.hasOwnProperty('memory') && console.memory; }); }, enumerable: true, configurable: true }); Debugger.prototype.assert = function (value, message) { var _this = this; var optionalParams = []; for (var _i = 2; _i < arguments.length; _i++) { optionalParams[_i - 2] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).assert.apply(_a, [value, message].concat(optionalParams)); }); }; Debugger.prototype.countReset = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.countReset(label); }); }; Debugger.prototype.dir = function (obj) { var _this = this; var options = []; for (var _i = 1; _i < arguments.length; _i++) { options[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).dir.apply(_a, [obj].concat(options)); }); }; Debugger.prototype.error = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).error.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.info = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).info.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.log = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).log.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.time = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.time(label); }); }; Debugger.prototype.timeEnd = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.timeEnd(label); }); }; Debugger.prototype.timeLog = function (label) { var _this = this; var data = []; for (var _i = 1; _i < arguments.length; _i++) { data[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { return _this.console.timeLog(label, data); }); }; Debugger.prototype.timeStamp = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.timeStamp(label); }); }; Debugger.prototype.timeline = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.timeline(label); }); }; Debugger.prototype.timelineEnd = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.timelineEnd(label); }); }; Debugger.prototype.trace = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).trace.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.warn = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).warn.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.clear = function () { var _this = this; return this.doIfEnabled(function () { return _this.console.clear(); }); }; Debugger.prototype.count = function (countTitle) { var _this = this; return this.doIfEnabled(function () { return _this.console.count(); }); }; Debugger.prototype.debug = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).debug.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.dirxml = function (value) { var _this = this; return this.doIfEnabled(function () { return _this.console.dirxml(value); }); }; Debugger.prototype.exception = function (message) { var _this = this; var optionalParams = []; for (var _i = 1; _i < arguments.length; _i++) { optionalParams[_i - 1] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).exception.apply(_a, [_this.addPrefix(message)].concat(optionalParams)); }); }; Debugger.prototype.group = function (groupTitle) { var _this = this; return this.doIfEnabled(function () { return _this.console.group(groupTitle); }); }; Debugger.prototype.groupCollapsed = function (groupTitle) { var _this = this; return this.doIfEnabled(function () { return _this.console.groupCollapsed(groupTitle); }); }; Debugger.prototype.groupEnd = function () { var _this = this; return this.doIfEnabled(function () { return _this.console.groupEnd(); }); }; Debugger.prototype.markTimeline = function (label) { var _this = this; return this.doIfEnabled(function () { return _this.console.markTimeline(label); }); }; Debugger.prototype.profile = function (reportName) { var _this = this; return this.doIfEnabled(function () { return _this.console.profile(reportName); }); }; Debugger.prototype.profileEnd = function () { var _this = this; return this.doIfEnabled(function () { return _this.console.profileEnd(); }); }; Debugger.prototype.table = function () { var _this = this; var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } return this.doIfEnabled(function () { var _a; return (_a = _this.console).table.apply(_a, data); }); }; /** * Throws usual error in debug mode and non-blocking otherwise * @param {Error} error */ Debugger.prototype.throw = function (error) { error.message = this.addPrefix(error.message); if (this.isEnabled) { throw error; } setTimeout(function () { throw error; }); }; Debugger.prototype.doIfEnabled = function (action) { if (this.isEnabled) { return action(); } }; Debugger.prototype.addPrefix = function (message) { if (this.prefix && (typeof message === 'string' || !message)) { return this.prefix + message; } return message; }; return Debugger; }()); export { Debugger };