yggdrasil-go/src/yggdrasil/release.go
2018-06-12 17:50:08 -05:00

14 lines
286 B
Go

// +build !debug
package yggdrasil
import (
"errors"
"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'")
}