Files
pncdsl/util.log.go
2026-05-25 21:28:17 +02:00

16 lines
191 B
Go

package pncdsl
import (
"fmt"
"os"
)
var DebugLog = false
func logf(format string, args ...any) {
if !DebugLog {
return
}
fmt.Fprintf(os.Stderr, "[pncdsl] "+format+"\n", args...)
}