allproxy
Version:
AllProxy: MITM HTTP Debugging Tool.
16 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ConsoleLog {
static debug(...args) {
if (ConsoleLog.enableDebug)
console.log(...args);
}
static info(...args) {
if (ConsoleLog.enableDebug || ConsoleLog.enableInfo)
console.log(...args);
}
}
exports.default = ConsoleLog;
ConsoleLog.enableDebug = false;
ConsoleLog.enableInfo = false;
//# sourceMappingURL=ConsoleLog.js.map