新版本,代理功能上线

This commit is contained in:
2025-03-07 03:48:59 +08:00
parent 8ead7a7a67
commit b2d9d828e3
130 changed files with 11004 additions and 2209 deletions

View File

@@ -25,12 +25,12 @@ func LoggerInterceptor(ctx context.Context, req interface{}, info *grpc.UnarySer
if err != nil {
causeErr := errors.Cause(err) // err类型
if e, ok := causeErr.(*xerr.CodeError); ok { //自定义错误类型
logx.WithContext(ctx).Errorf("【RPC-SRV-ERR】 %+v", err)
logx.WithContext(ctx).Errorf("【RPC-SRV-ERR】 %v", err)
//转成grpc err
err = status.Error(codes.Code(e.GetErrCode()), e.GetErrMsg())
} else {
logx.WithContext(ctx).Errorf("【RPC-SRV-ERR】 %+v", err)
logx.WithContext(ctx).Errorf("【RPC-SRV-ERR】 %v", err)
}
}