func GetServerInterceptorLogOptions()

in grpc/interceptor/interceptor.go [48:56]


func GetServerInterceptorLogOptions(logger *log.Logger, attrs []log.Attr) ServerInterceptorLogOptions {
	return ServerInterceptorLogOptions{
		Logger:        logger,
		APIOutput:     os.Stdout,
		CtxOutput:     os.Stdout,
		APIAttributes: attrs,
		CtxAttributes: attrs,
	}
}