2013-12-11 14:18:45 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2014-02-07 08:07:31 +00:00
|
|
|
// get function name
|
2013-12-11 14:18:45 +00:00
|
|
|
func GetFuncName(i interface{}) string {
|
|
|
|
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
|
|
|
|
}
|