Files
logrus/versions_go1_14.go
T
2020-03-02 21:47:38 +08:00

11 lines
189 B
Go

// +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()
}