From 9e7d5618ae2d9136dc6cb2b4405e4d8c57364621 Mon Sep 17 00:00:00 2001 From: xrstf Date: Wed, 12 Apr 2023 13:19:40 +0200 Subject: [PATCH] remove accidental print statement --- pkg/collector/disk.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/collector/disk.go b/pkg/collector/disk.go index fde09c7..0ce5ab8 100644 --- a/pkg/collector/disk.go +++ b/pkg/collector/disk.go @@ -58,8 +58,6 @@ func (c *diskCollector) CollectPodMetadata(ctx context.Context, pod *corev1.Pod) filename := filepath.Join(directory, fmt.Sprintf("%s.yaml", pod.Name)) - fmt.Println(filename) - // file exists already, do not overwrite if _, err := os.Stat(filename); err == nil { return nil