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