Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
w-h-a committed Aug 25, 2024
1 parent 04fa6c2 commit b76653c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sidecar/custom/sidecar.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (s *customSidecar) actOnEventFromApp(event *sidecar.Event) error {
if err := s.sendEventToTarget(target, event); err != nil {
return err
}
log.Infof("successfully send event %s to target %s", event.EventName, target)
log.Infof("successfully sent event %s to target %s", event.EventName, target)
}

return nil
Expand Down Expand Up @@ -199,6 +199,7 @@ func (s *customSidecar) postEventToApp(event *sidecar.Event) error {
return err
}
} else {
log.Infof("WE SUCCESSFULLY GET HERE")
rsp, err = s.sendEventViaHttp(s.options.ServiceName, s.options.ServiceName, s.options.ServicePort.Port, event.EventName, url, event)
if err != nil {
return err
Expand Down

0 comments on commit b76653c

Please sign in to comment.