yggdrasil-go/src/yggdrasil/release.go
2018-06-02 21:21:05 +01:00

13 lines
287 B
Go

// +build !debug
package yggdrasil
import "errors"
import "log"
// Starts the function profiler. This is only supported when built with
// '-tags build'.
func StartProfiler(_ *log.Logger) error {
return errors.New("Release builds do not support -pprof, build using '-tags debug'")
}