Skip to content

Instantly share code, notes, and snippets.

@pdk
Created August 30, 2018 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdk/f69f494700b45d5bbeb30cab32754b19 to your computer and use it in GitHub Desktop.
Save pdk/f69f494700b45d5bbeb30cab32754b19 to your computer and use it in GitHub Desktop.
log fatal example
func LogFatalIfErr(..., err error) ... {
if err != nil {
log.Fatalf("%s", err)
}
return ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment