This repository has been archived on 2025-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
EpochSilicon/pkg/debug/debug.go

16 lines
299 B
Go

//go:build !release
package debug
import "log"
// Printf logs with fmt.Printf style formatting in debug builds
func Printf(format string, v ...interface{}) {
log.Printf(format, v...)
}
// Println logs with fmt.Println style in debug builds
func Println(v ...interface{}) {
log.Println(v...)
}