ZipFile: Add logging if error opening Zipfile

This commit is contained in:
Junjie Qian 2017-05-15 13:47:40 -07:00 коммит произвёл Junjie Qian
Родитель b903bd2957
Коммит d637983f48
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -29,6 +29,7 @@ func (this *ZipFile) Attr(ctx context.Context, fuseAttr *fuse.Attr) error {
func (this *ZipFile) Open(ctx context.Context, req *fuse.OpenRequest, resp *fuse.OpenResponse) (fs.Handle, error) {
contentStream, err := this.zipFile.Open()
if err != nil {
Error.Println("Opening [", this.Attrs.Name, "], error: ", err)
return nil, err
}
// reporting to FUSE that the stream isn't seekable