From 886ceb135e6de3ded65b6a0da065031dd2b1c961 Mon Sep 17 00:00:00 2001 From: Mark Chmarny Date: Fri, 12 Jun 2020 16:08:00 -0700 Subject: [PATCH] cleanuped example console printouts --- example/serving/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/example/serving/main.go b/example/serving/main.go index b7c7a97..5b16f5d 100644 --- a/example/serving/main.go +++ b/example/serving/main.go @@ -47,8 +47,6 @@ func (s *server) MyMethod() string { func (s *server) OnInvoke(ctx context.Context, in *commonv1pb.InvokeRequest) (*commonv1pb.InvokeResponse, error) { var response string - fmt.Printf("Got invoked with: %s", string(in.Data.Value)) - switch in.Method { case "MyMethod": response = s.MyMethod()