func()

in galog.go [881:885]


func (lg *logger) DebugfV(v Verbose, format string, args ...any) {
	if v {
		lg.log(newEntry(DebugLevel, lg.prefix, fmt.Sprintf(format, args...)))
	}
}