Skip to content

Commit

Permalink
Add key to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jul 8, 2024
1 parent 990bf71 commit c9a3c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/state/call.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (c *serviceCall) Send(body any, delay time.Duration) error {
}

func (m *Machine) doDynCall(service, key, method string, input, output any) error {
m.log.Debug().Str("service", service).Str("method", method).Msg("in do call")
m.log.Debug().Str("service", service).Str("method", method).Str("key", key).Msg("executing call")

params, err := json.Marshal(input)
if err != nil {
Expand Down

0 comments on commit c9a3c87

Please sign in to comment.