Some checks failed
Automated Container Build / build-and-push (push) Failing after 12s
8 lines
No EOL
154 B
JavaScript
8 lines
No EOL
154 B
JavaScript
var isEnabled = false;
|
|
export function enableDebugLog() {
|
|
isEnabled = true;
|
|
}
|
|
export function log(msg) {
|
|
if (!isEnabled) return;
|
|
console.log(msg);
|
|
} |