Parcourir la source

添加grpc logger

yjp il y a 1 an
Parent
commit
f8c7083a72
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      grpc_logger.go

+ 5 - 1
grpc_logger.go

@@ -5,6 +5,10 @@ import (
 	"google.golang.org/grpc"
 )
 
-func GRPCLogger() grpc.StreamServerInterceptor {
+func GRPCStreamServerLogger() grpc.StreamServerInterceptor {
 	return grpc_zap.StreamServerInterceptor(logger)
 }
+
+func GRPCUnaryServerLogger() grpc.UnaryServerInterceptor {
+	return grpc_zap.UnaryServerInterceptor(logger)
+}