diff --git a/internal/fs/fs_reader.go b/internal/fs/fs_reader.go index 73aca3230..dac4aac9e 100644 --- a/internal/fs/fs_reader.go +++ b/internal/fs/fs_reader.go @@ -1,7 +1,6 @@ package fs import ( - "fmt" "io" "os" "path" @@ -208,7 +207,6 @@ func (r *readerFile) Read(p []byte) (int, error) { // return an error if we did not read any data if err == io.EOF && !r.AllowEmptyFile && !r.bytesRead { - fmt.Printf("reader: %d bytes read, err %v, bytesRead %v, allowEmpty %v\n", n, err, r.bytesRead, r.AllowEmptyFile) return n, &os.PathError{ Path: r.fakeFile.name, Op: "read",