Skip to content

Commit

Permalink
Reduce log level for adding file message
Browse files Browse the repository at this point in the history
This makes for massive logs and with it at debug level will be simpler to look at the output of kaniko
  • Loading branch information
mcfedr authored Mar 25, 2019
1 parent c8fabdf commit 82f4179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/snapshot/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 82f4179

Please sign in to comment.