From e4d084a6ece3eae1f1e9a62d3093537dc6040e31 Mon Sep 17 00:00:00 2001 From: eshitachandwani <59800922+eshitachandwani@users.noreply.github.com> Date: Tue, 10 Dec 2024 23:10:08 +0530 Subject: [PATCH] examples: replace printf with print for log message in gracefulstop (#7917) --- examples/features/gracefulstop/client/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/features/gracefulstop/client/main.go b/examples/features/gracefulstop/client/main.go index 61f5874b3940..772d128ec2b9 100644 --- a/examples/features/gracefulstop/client/main.go +++ b/examples/features/gracefulstop/client/main.go @@ -65,7 +65,7 @@ func main() { } unaryRequests++ time.Sleep(200 * time.Millisecond) - log.Printf(r.Message) + log.Print(r.Message) } log.Printf("Successful unary requests made by client: %d", unaryRequests)