README
Bugsnag handler
Error handler integration for Bugsnag.
Installation
go get emperror.dev/handler/bugsnag
Usage
package main
import (
"emperror.dev/handler/bugsnag"
)
func main() {
apiKey := "key"
handler := bugsnag.New(apiKey)
}
Development
When all coding and testing is done, please run the test suite:
$ make check
License
The MIT License (MIT). Please see License File for more information.
Documentation
Overview ¶
Package bugsnag provides Bugsnag integration.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler is responsible for sending errors to Bugsnag.
func NewFromNotifier ¶
func NewFromNotifier(notifier *bugsnag.Notifier) *Handler
NewFromNotifier creates a new handler from an existing notifier instance.
Example ¶
Output: