From 1d6f51d54a4fac997ee6d4bfbc680d70aa0e313a Mon Sep 17 00:00:00 2001 From: Griffin Dunn Date: Tue, 4 Feb 2020 16:17:36 -0500 Subject: [PATCH] fix(sympath): remove log statement Signed-off-by: Griffin Dunn --- internal/sympath/walk.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/sympath/walk.go b/internal/sympath/walk.go index 752526fe9..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", path, resolved) if info, err = os.Lstat(resolved); err != nil { return err }