Skip to content

Commit

Permalink
Removing the unnecessary loggers which are not needed any more.
Browse files Browse the repository at this point in the history
Signed-off-by: lrangine <[email protected]>
  • Loading branch information
lokeshrangineni committed Jan 31, 2025
1 parent 1556412 commit 9853774
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions infra/feast-operator/internal/controller/services/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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...)
}
}
Expand Down

0 comments on commit 9853774

Please sign in to comment.