@@ -25,6 +25,7 @@ func NewAddOrUpdateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AddOr
}
func (l *AddOrUpdateLogic) AddOrUpdate(req *types.AddOrUpdateReq) (resp *types.Reply, err error) {
+ logx.Info(fmt.Sprintf("%+v", req))
resp = service.Network.AddOrUpdate(req)
return
@@ -24,6 +24,7 @@ func NewAllProjectLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AllPro
func (l *AllProjectLogic) AllProject(req *types.AllprojectReq) (resp *types.Reply, err error) {
resp = service.Network.AllProject(req)
@@ -25,6 +25,7 @@ func NewAssociateLogic(ctx context.Context, svcCtx *svc.ServiceContext) *Associa
func (l *AssociateLogic) Associate(req *types.AssociateReq) (resp *types.Reply, err error) {
resp = service.Network.Associate(req)
@@ -24,6 +24,7 @@ func NewNetworkListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *Netwo
func (l *NetworkListLogic) NetworkList(req *types.NetWorkListReq) (resp *types.Reply, err error) {
resp = service.Network.List(req)