ZeroLogger Plugin
The ZeroLogger
plugin is a Goa plugin
that adapt the basic logger to use the zerolog library.
Enabling the Plugin
To enable the plugin import it in your design.go file using the blank identifier _
as follows (same as zaplogger plugin):
package design
import . "goa.design/goa/v3/http/design"
import . "goa.design/goa/v3/http/dsl"
import _ "goa.design/plugins/v3/zerologger" // Enables the plugin
var _ = API("...
and generate as usual:
goa gen PACKAGE
goa example PACKAGE
where PACKAGE
is the Go import path of the design package.