aboutsummaryrefslogtreecommitdiff
path: root/tar.go
diff options
context:
space:
mode:
Diffstat (limited to 'tar.go')
-rw-r--r--tar.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tar.go b/tar.go
index ba7f3a5..feb3b34 100644
--- a/tar.go
+++ b/tar.go
@@ -13,7 +13,7 @@ func streamFilesTar(files []File, stream io.WriteCloser) {
for _, f := range files {
file, err := os.Open(f.Path)
if err != nil {
- logger.Errorf("reading file '%s': %s", f.Path, err)
+ logger.Error(err)
continue
}
stat, err := file.Stat()