From 30133edffe70925d4bc3458252cfcba71e500ca8 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Thu, 24 Oct 2024 18:17:16 +0200
Subject: [PATCH] OZG-6668 remove logging added for testing

---
 internal/server/grpc_router.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/internal/server/grpc_router.go b/internal/server/grpc_router.go
index 8cebb63..359f0c8 100644
--- a/internal/server/grpc_router.go
+++ b/internal/server/grpc_router.go
@@ -60,7 +60,6 @@ func (s *collaborationRouter) FindVorgang(ctx context.Context, in *pb.GrpcFindVo
 }
 
 func (s *collaborationRouter) handleRequest(ctx context.Context, handler func(pb.CollaborationServiceClient, context.Context) (interface{}, error)) (interface{}, error) {
-	logger.Info(fmt.Sprintf("setting grpc headers %s: %s", keyClientName, clientName))
 	ctx = metadata.AppendToOutgoingContext(ctx, keyClientName, clientName)
 	md, ok := metadata.FromIncomingContext(ctx)
 	if !ok {
-- 
GitLab