package
0.1.0
Repository: https://github.com/xmlking/grpc-starter-kit.git
Documentation: pkg.go.dev

# README

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

# Functions

No description provided by the author