From 98537742aae14052ca9dbb7822b12780c6808d8c Mon Sep 17 00:00:00 2001 From: lrangine <19699092+lokeshrangineni@users.noreply.github.com> Date: Thu, 30 Jan 2025 23:00:32 -0500 Subject: [PATCH] Removing the unnecessary loggers which are not needed any more. Signed-off-by: lrangine <19699092+lokeshrangineni@users.noreply.github.com> --- infra/feast-operator/internal/controller/services/services.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/infra/feast-operator/internal/controller/services/services.go b/infra/feast-operator/internal/controller/services/services.go index b14cd5e129..d7d272f982 100644 --- a/infra/feast-operator/internal/controller/services/services.go +++ b/infra/feast-operator/internal/controller/services/services.go @@ -421,8 +421,6 @@ func (feast *FeastServices) setContainer(containers *[]corev1.Container, feastTy } volumeMounts := feast.getVolumeMounts(feastType) if len(volumeMounts) > 0 { - logger := log.FromContext(feast.Handler.Context) - logger.Info("Getting the volumeMounts - Lokesh Test", "feastType", feastType, "volumeMounts", volumeMounts) container.VolumeMounts = append(container.VolumeMounts, volumeMounts...) } applyOptionalContainerConfigs(container, serviceConfigs.OptionalConfigs) @@ -901,8 +899,6 @@ func (feast *FeastServices) mountPodVolumes(podSpec *corev1.PodSpec) { volumes = feast.Handler.FeatureStore.Spec.Services.Volumes } if len(volumes) > 0 { - logger := log.FromContext(feast.Handler.Context) - logger.Info("Getting the volumes - Lokesh Test 1", "volumes", volumes) podSpec.Volumes = append(podSpec.Volumes, volumes...) } }