From 8ac1551a3e0ed66bf5c34f23200552f29c06fbf7 Mon Sep 17 00:00:00 2001 From: liuyao Date: Mon, 12 Apr 2021 20:37:40 +0800 Subject: [PATCH] fix gRPC-integration.md --- .../en/developing-applications/integrations/gRPC-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md index 554bf7561..dfaaeda64 100644 --- a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md +++ b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md @@ -86,7 +86,7 @@ data := []byte("ping") // create the client client, err := dapr.NewClient() if err != nil { - logger.Panic(err) + log.Panic(err) } defer client.Close() ```