From 2b656c2167da04b4a51a103dc8f16478aecdc4c1 Mon Sep 17 00:00:00 2001 From: Sergey Date: Fri, 1 Jul 2022 11:42:52 +0300 Subject: [PATCH] Cleanup --- cmd/grpcserver/grpc.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/grpcserver/grpc.go b/cmd/grpcserver/grpc.go index f3b6d7f69..87a888e19 100644 --- a/cmd/grpcserver/grpc.go +++ b/cmd/grpcserver/grpc.go @@ -203,13 +203,11 @@ func main() { } proxy.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - fmt.Println("START ", r.URL.Path) if webrpc.IsGrpcWebRequest(r) || webrpc.IsAcceptableGrpcCorsRequest(r) || webrpc.IsGrpcWebSocketRequest(r) { webrpc.ServeHTTP(w, r) } - fmt.Println("END ", r.URL.Path) }) go func() {