From 82f4179ba6f14ce772eb047a6dc6261bf3504277 Mon Sep 17 00:00:00 2001 From: Fred Cox Date: Mon, 25 Mar 2019 22:14:47 +0200 Subject: [PATCH] Reduce log level for adding file message This makes for massive logs and with it at debug level will be simpler to look at the output of kaniko --- pkg/snapshot/snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/snapshot/snapshot.go b/pkg/snapshot/snapshot.go index d87378b626..90638168d1 100644 --- a/pkg/snapshot/snapshot.go +++ b/pkg/snapshot/snapshot.go @@ -178,7 +178,7 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) { return nil, nil, err } if fileChanged { - logrus.Infof("Adding %s to layer, because it was changed.", path) + logrus.Debugf("Adding %s to layer, because it was changed.", path) filesToAdd = append(filesToAdd, path) } }