Last active
August 26, 2024 14:25
-
-
Save rms1000watt/8f9c9c304f71520c42962b5c569393aa to your computer and use it in GitHub Desktop.
Golang Errors Stacktrace and Line Number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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, "")) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
quite confusing... looks like example with some std api, while its not. also github.com/pkg/errors is in archive now.