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() ```