Change loglevel for copying files to debug (#303)
This commit is contained in:
parent
aabb97b944
commit
129eb9b8a8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue