README
Logur error handler
Error handler using Logur.
Installation
go get emperror.dev/handler/logur
Usage
package main
import (
"github.com/goph/logur/adapters/logrusadapter"
"github.com/sirupsen/logrus"
logurhandler "emperror.dev/handler/logur"
)
func main() {
logger := logrusadapter.New(logrus.New())
handler := logurhandler.New(logger)
}
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 logur provides an error handler using a Logur compatible logger.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ErrorLogger ¶
type ErrorLogger interface { // Error logs an Error event. // // Critical events that require immediate attention. Error(msg string, fields ...map[string]interface{}) }
ErrorLogger is a subset of the Logur Logger and LoggerContext interfaces used for error logging.
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler logs errors using a Logur compatible logger.
func WithStackInfo ¶
WithStackInfo enables annotating every error passing through the handler with the function name and file line of the stack trace's top frame (if one is found).
Example ¶
Maps are printed in key-sorted order as of Go 1.12 See https://golang.org/doc/go1.12#fmt
Output: error map[file:example_go1_12_test.go:17 func:ExampleWithStackInfo]
func WithStackTrace ¶
WithStackTrace enables annotating every error passing through the handler with stack trace (if one is found).