logginghandler/go.mod
Marvin Preuss d5b5c131e7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat(requestid): the handler is request id aware
if the request has an header `X-Request-ID`, the middleware will extract
  it and use it as uuid on the logs.
2023-02-24 09:07:06 +00:00

15 lines
400 B
Modula-2

module go.xsfx.dev/logginghandler
go 1.15
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/justinas/alice v1.2.0
github.com/kr/text v0.2.0 // indirect
github.com/rs/xid v1.3.0
github.com/rs/zerolog v1.26.1
github.com/stretchr/testify v1.7.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)