Skip to content

Commit

Permalink
code(pkg/runtime/runtime) - add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
PxyUp committed Feb 9, 2024
1 parent 8ee5c06 commit 41aa468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (r *runtime) createRunTime(updates <-chan *trigger.Message) {
case n := <-updates:
lName := n
go func(name string, value builder.Interfacable) {
r.logger.Infow("new trigger comes", "name", name)
r.logger.Infow("new trigger comes", "name", name, "input", value.ToJson())
_, _ = reg.Get(name).Process(value)
}(lName.Name, lName.Value)
}
Expand Down

0 comments on commit 41aa468

Please sign in to comment.