Skip to content

Commit

Permalink
Merge branch 'master' into feature/aceld
Browse files Browse the repository at this point in the history
  • Loading branch information
aceld committed Mar 26, 2024
2 parents eae7443 + 6d34cb7 commit b01d71a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion function/kis_function_e.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewKisFunctionE() kis.Function {
}

func (f *KisFunctionE) Call(ctx context.Context, flow kis.Flow) error {
log.Logger().InfoF("KisFunctionE, flow = %+v\n", flow)
log.Logger().DebugF("KisFunctionE, flow = %+v\n", flow)

// 通过KisPool 路由到具体的执行计算Function中
if err := kis.Pool().CallFunction(ctx, f.Config.FName, flow); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion function/kis_function_l.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewKisFunctionL() kis.Function {
}

func (f *KisFunctionL) Call(ctx context.Context, flow kis.Flow) error {
log.Logger().InfoF("KisFunctionL, flow = %+v\n", flow)
log.Logger().DebugF("KisFunctionL, flow = %+v\n", flow)

// 通过KisPool 路由到具体的执行计算Function中
if err := kis.Pool().CallFunction(ctx, f.Config.FName, flow); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion function/kis_function_s.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewKisFunctionS() kis.Function {
}

func (f *KisFunctionS) Call(ctx context.Context, flow kis.Flow) error {
log.Logger().InfoF("KisFunctionS, flow = %+v\n", flow)
log.Logger().DebugF("KisFunctionS, flow = %+v\n", flow)

// 通过KisPool 路由到具体的执行计算Function中
if err := kis.Pool().CallFunction(ctx, f.Config.FName, flow); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion function/kis_function_v.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewKisFunctionV() kis.Function {
}

func (f *KisFunctionV) Call(ctx context.Context, flow kis.Flow) error {
log.Logger().InfoF("KisFunctionV, flow = %+v\n", flow)
log.Logger().DebugF("KisFunctionV, flow = %+v\n", flow)

// 通过KisPool 路由到具体的执行计算Function中
if err := kis.Pool().CallFunction(ctx, f.Config.FName, flow); err != nil {
Expand Down

0 comments on commit b01d71a

Please sign in to comment.