Some checks failed
Automated Container Build / build-and-push (push) Failing after 12s
15 lines
No EOL
280 B
JavaScript
15 lines
No EOL
280 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.enableDebugLog = enableDebugLog;
|
|
exports.log = log;
|
|
var isEnabled = false;
|
|
function enableDebugLog() {
|
|
isEnabled = true;
|
|
}
|
|
function log(msg) {
|
|
if (!isEnabled) return;
|
|
console.log(msg);
|
|
} |