From aaa8487590bf9fea2ec5095b0a7487250e76f7cb Mon Sep 17 00:00:00 2001 From: congqixia Date: Mon, 9 Sep 2024 17:19:05 +0800 Subject: [PATCH] enhance: Remove duplicated log in proxy service (#36110) Remove duplicate identical log in proxy/service.go Signed-off-by: Congqi Xia --- internal/distributed/proxy/service.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/distributed/proxy/service.go b/internal/distributed/proxy/service.go index a98e8b0fbd..707b5dfcef 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -339,7 +339,6 @@ func (s *Server) startExternalGrpc(grpcPort int, errChan chan error) { if Params.TLSMode.GetAsInt() == 1 { creds, err := credentials.NewServerTLSFromFile(Params.ServerPemPath.GetValue(), Params.ServerKeyPath.GetValue()) if err != nil { - log.Warn("proxy can't create creds", zap.Error(err)) log.Warn("proxy can't create creds", zap.Error(err)) errChan <- err return