Cloak/cmd/ck-server/pprof.go

10 lines
152 B
Go
Raw Normal View History

// +build !pprof
package main
import "log"
func startPprof(x string) {
log.Println("pprof not available in release builds to reduce binary size")
}