@sentry/wizard
Version:
Sentry wizard helping you to configure your project
21 lines • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseStep = void 0;
const Logging_1 = require("../Helper/Logging");
class BaseStep {
_argv;
_isDebug = false;
constructor(_argv) {
this._argv = _argv;
this._isDebug = _argv.debug;
}
debug(msg) {
if (this._isDebug) {
(0, Logging_1.nl)();
(0, Logging_1.debug)(msg);
(0, Logging_1.nl)();
}
}
}
exports.BaseStep = BaseStep;
//# sourceMappingURL=BaseStep.js.map