logginghandler/README.md
Marvin Preuss 6dca2d6522
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
docs(README): updated example
2022-01-14 13:55:05 +01:00

1.1 KiB

logginghandler

Build Status Go Reference Go Report Card

Just a simple zerolog based request logging http middleware. It also sets a X-Request-ID in the request and response headers.

Install

    go get -v go.xsfx.dev/logginghandler

Usage

    logger := log.With().Logger()
    handler := logginghandler.Handler(logger)(http.HandlerFunc(myHandler))
    http.Handle("/", handler)
    log.Fatal().Msg(http.ListenAndServe(":5000", nil).Error())

In other handlers you can access the UUID:

    func anotherHandler(w http.ResponseWriter, r *http.Request) {
            fmt.Fprintf(w, "your uuid is: %s", logginghandler.GetUUID(r))
    }

The already prepared logger is also available:

    l := logginghandler.Logger(r)
    l.Info().Msg("foo bar")