Merge pull request #393 from dzoeteman/patch-1

Change loglevel for copying files to debug (#303)
This commit is contained in:
priyawadhwa 2018-10-12 10:54:36 -07:00 committed by GitHub
commit 72e088fda5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@ func CopyDir(src, dest string) ([]string, error) {
}
destPath := filepath.Join(dest, file)
if fi.IsDir() {
logrus.Infof("Creating directory %s", destPath)
logrus.Debugf("Creating directory %s", destPath)
uid := int(fi.Sys().(*syscall.Stat_t).Uid)
gid := int(fi.Sys().(*syscall.Stat_t).Gid)
@ -511,7 +511,7 @@ func CopyFile(src, dest string) error {
if err != nil {
return err
}
logrus.Infof("Copying file %s to %s", src, dest)
logrus.Debugf("Copying file %s to %s", src, dest)
srcFile, err := os.Open(src)
if err != nil {
return err