Merge pull request #15111 from Microsoft/fix-archive-copy-log
Fix log to logrus
This commit is contained in:
commit
3589475dc0
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
log "github.com/Sirupsen/logrus"
|
"github.com/Sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Errors used or returned by this file.
|
// Errors used or returned by this file.
|
||||||
|
@ -121,7 +121,7 @@ func TarResource(sourcePath string) (content Archive, err error) {
|
||||||
|
|
||||||
filter := []string{sourceBase}
|
filter := []string{sourceBase}
|
||||||
|
|
||||||
log.Debugf("copying %q from %q", sourceBase, sourceDir)
|
logrus.Debugf("copying %q from %q", sourceBase, sourceDir)
|
||||||
|
|
||||||
return TarWithOptions(sourceDir, &TarOptions{
|
return TarWithOptions(sourceDir, &TarOptions{
|
||||||
Compression: Uncompressed,
|
Compression: Uncompressed,
|
||||||
|
|
Loading…
Reference in a new issue