Skip to content

Commit 11738ea

Browse files
authored
Remove the log messages
1 parent e11f761 commit 11738ea

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

patch/patch.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"compress/bzip2"
55
"io"
66
"io/ioutil"
7-
"log"
87

98
"github.com/icedream/go-bsdiff/internal"
109
"github.com/icedream/go-bsdiff/internal/native"
@@ -22,8 +21,6 @@ func Patch(oldReader io.Reader, newWriter io.Writer, patchReader io.Reader) (err
2221
}
2322
newBytes := make([]byte, newLen)
2423

25-
log.Printf("Going to create a file of %d bytes.", newLen)
26-
2724
// Decompression
2825
bz2Reader := bzip2.NewReader(patchReader)
2926

0 commit comments

Comments
 (0)