diff --git a/go/integrations/knative-go/main.go b/go/integrations/knative-go/main.go index 2438433e..b34a6d8d 100644 --- a/go/integrations/knative-go/main.go +++ b/go/integrations/knative-go/main.go @@ -11,7 +11,7 @@ import ( ) func sendEmail(log *slog.Logger, username string, id string) error { - log.Info("Sending email to activate account %s. To simulate the click on the email button, send a request to: POST http://localhost:8080/restate/awakeables/%s/resolve", username, id) + log.Info(fmt.Sprintf("Sending email to activate account %s. To simulate the click on the email button: curl -v -X POST http://localhost:8080/restate/awakeables/%s/resolve", username, id)) return nil }