diff --git a/envoy-control-core/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/snapshot/resource/clusters/EnvoyClustersFactory.kt b/envoy-control-core/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/snapshot/resource/clusters/EnvoyClustersFactory.kt index 68776dcf3..1168d6364 100644 --- a/envoy-control-core/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/snapshot/resource/clusters/EnvoyClustersFactory.kt +++ b/envoy-control-core/src/main/kotlin/pl/allegro/tech/servicemesh/envoycontrol/snapshot/resource/clusters/EnvoyClustersFactory.kt @@ -285,9 +285,6 @@ class EnvoyClustersFactory( val trafficSplitEnabled = trafficSplitting.weightsByService.containsKey(serviceName) val allowed = clusterLoadAssignment != null && properties.loadBalancing.trafficSplitting.zonesAllowingTrafficSplitting.contains(currentZone) - if (serviceName == "varnish" || serviceName == "service-mesh-service-second") { - logger.info("trafficSplitEnabled $trafficSplitEnabled allowed $allowed, $currentZone") - } return trafficSplitEnabled && allowed }