grpc-zerolog
grpc-zerolog is a simple implementation of grpclog.LoggerV2 interface using zerolog. Use this to log the internal actions of a gRPC server or client.
Usage
Add the following before you grpc.Dial
either a client or server.
logger := zerolog.New(os.Stdout).With().Timestamp().Logger()
logger = logger.With().Str("module", "grpc").Logger()
# replaces the grpc_.LoggerV2 with the provided logger and verbosity.
grpclog.SetLoggerV2(grpc.New(gLogger, 99))
Start your server/client with the following environment variable.
GRPC_GO_LOG_VERBOSITY_LEVEL=info GRPC_GO_LOG_VERBOSITY_LEVEL=99 go run cmd/account/main.go