Error handler integration for Logrus.
go get emperror.dev/handler/logrus
package main
import (
"github.com/sirupsen/logrus"
logrushandler "emperror.dev/handler/logrus"
)
func main() {
logger := logrus.New()
handler := logrushandler.New(logger)
}
When all coding and testing is done, please run the test suite:
$ make check
The MIT License (MIT). Please see License File for more information.