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
// Package ravenerrors adds support for github.com/pkg/errors's stacktrace to github.com/getsentry/raven-go. | |
// | |
// https://github.com/getsentry/raven-go/issues/88#issuecomment-269002948 | |
// | |
// It works as a replacement for github.com/getsentry/raven-go.CaptureError*. | |
// Stacktraces are extracted from the error if available and replace raven's default behavior. | |
package ravenerrors | |
import ( | |
"reflect" |