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
This commit is contained in:
parent
c8fabdf6e4
commit
82f4179ba6
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue