diff --git a/sys/xtract.go b/sys/xtract.go index 38164bd..9d4d57c 100644 --- a/sys/xtract.go +++ b/sys/xtract.go @@ -41,11 +41,8 @@ func (x *Xtract) setCompressedFile(dumpName string) { } func (x *Xtract) writeUncompressedData(out *bytes.Buffer) bool { - fmt.Printf("writeUncompressed %s\n", x.outFile) - fmt.Printf("writeUncompressedData :\n%s\n", string(out.Bytes()[0:50])) err := os.WriteFile(x.outFile, out.Bytes(), 0644) if err != nil { - fmt.Printf("err uncompressed : %+v\n", err) panic(err) } return true @@ -53,19 +50,16 @@ func (x *Xtract) writeUncompressedData(out *bytes.Buffer) bool { func (x *Xtract) UnGzip(dumpName string) bool { x.setCompressedFile(dumpName) - fmt.Printf("xtract %s : %+v\n", dumpName, x) var out bytes.Buffer r, err := gzip.NewReader(x.reader) if err != nil { panic(err) } - var w64 int64 = 0 if x.withBar { - w64, err = io.Copy(io.MultiWriter(&out, *x.bar), r) + _, err = io.Copy(io.MultiWriter(&out, *x.bar), r) } else { - w64, err = io.Copy(&out, r) + _, err = io.Copy(&out, r) } - fmt.Printf(" xtract (%d) err : %v\n", w64, err) if err != nil { panic(err) }