Files
inkwell/util.log.go
2026-07-30 12:16:39 +02:00

16 lines
193 B
Go

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