Skip to content

Instantly share code, notes, and snippets.

@hinst
Last active May 31, 2016 10:12
Show Gist options
  • Save hinst/577f07427c59eb5363eccc5605735b9e to your computer and use it in GitHub Desktop.
Save hinst/577f07427c59eb5363eccc5605735b9e to your computer and use it in GitHub Desktop.
Get caller function name for Go
func GetCallerName() string {
callers := make([]uintptr, 16)
runtime.Callers(3, callers)
f := runtime.FuncForPC(callers[0])
return f.Name()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment