Skip to content

Commit

Permalink
change some output Info->Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
aceld committed Mar 26, 2024
1 parent 02223f6 commit ec90a75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion function/kis_function_c.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func NewKisFunctionC() kis.Function {
}

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

// 通过KisPool 路由到具体的执行计算Function中
if err := kis.Pool().CallFunction(ctx, f.Config.FName, flow); err != nil {
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require (
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
Expand Down

0 comments on commit ec90a75

Please sign in to comment.