chore: Remove log message about resolving symlink.

This log message is very spammy is building many helm charts.

Signed-off-by: Connor Hindley <connor.hindley@tanium.com>
pull/13015/head
Connor Hindley 1 year ago
parent 518c69281f
commit c2a8a12858
No known key found for this signature in database
GPG Key ID: 3293949A7BFEEB6C

@ -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
}

Loading…
Cancel
Save