Skip to content

Instantly share code, notes, and snippets.

@rms1000watt
Last active August 26, 2024 14:25
Show Gist options
  • Save rms1000watt/8f9c9c304f71520c42962b5c569393aa to your computer and use it in GitHub Desktop.
Save rms1000watt/8f9c9c304f71520c42962b5c569393aa to your computer and use it in GitHub Desktop.
Golang Errors Stacktrace and Line Number
// https://godoc.org/github.com/pkg/errors#Frame.Format
package main
import (
"fmt"
"github.com/pkg/errors"
)
func main() {
err := errors.New("Error generated here")
if err != nil {
fmt.Printf("ERROR: %+v\r\n", errors.Wrap(err, ""))
}
}
@fedulovivan
Copy link

quite confusing... looks like example with some std api, while its not. also github.com/pkg/errors is in archive now.

@rms1000watt
Copy link
Author

8 year old gist 🤷‍♂️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment