logrus/versions_go1_14.go

11 lines
189 B
Go
Raw Normal View History

2020-02-27 03:04:36 +00:00
// +build go1.14
package logrus
import "runtime"
// funcName returns the function name that logrus calls
func funcName(pcs []uintptr) string {
return runtime.FuncForPC(pcs[0]).Name()
}