From c2a8a12858917ac97dfce8a7d8d5078909887ad9 Mon Sep 17 00:00:00 2001 From: Connor Hindley Date: Wed, 8 May 2024 14:15:55 -0500 Subject: [PATCH] chore: Remove log message about resolving symlink. This log message is very spammy is building many helm charts. Signed-off-by: Connor Hindley --- internal/sympath/walk.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/sympath/walk.go b/internal/sympath/walk.go index a276cfeff..4c5bc0950 100644 --- a/internal/sympath/walk.go +++ b/internal/sympath/walk.go @@ -21,7 +21,6 @@ limitations under the License. package sympath import ( - "log" "os" "path/filepath" "sort" @@ -71,7 +70,6 @@ func symwalk(path string, info os.FileInfo, walkFn filepath.WalkFunc) error { if err != nil { return errors.Wrapf(err, "error evaluating symlink %s", path) } - log.Printf("found symbolic link in path: %s resolves to %s. Contents of linked file included and used", path, resolved) if info, err = os.Lstat(resolved); err != nil { return err }