UNPKG

@sentry/wizard

Version:

Sentry wizard helping you to configure your project

21 lines 618 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseStep = void 0; var Logging_1 = require("../Helper/Logging"); var BaseStep = /** @class */ (function () { function BaseStep(_argv) { this._argv = _argv; this._isDebug = false; this._isDebug = _argv.debug; } BaseStep.prototype.debug = function (msg) { if (this._isDebug) { (0, Logging_1.nl)(); (0, Logging_1.debug)(msg); (0, Logging_1.nl)(); } }; return BaseStep; }()); exports.BaseStep = BaseStep; //# sourceMappingURL=BaseStep.js.map