Skip to content

Commit a37da8f

Browse files
authored
Update email activation log message format (#365)
1 parent a12bc21 commit a37da8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/integrations/knative-go/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
func sendEmail(log *slog.Logger, username string, id string) error {
14-
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)
14+
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))
1515
return nil
1616
}
1717

0 commit comments

Comments
 (0)