Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
jerbob92 committed Feb 13, 2022
1 parent 75c47a0 commit 631a5c4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions internal/implementation/fpdfview_experimental.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ package implementation
import "C"
import (
"errors"
"log"
"unsafe"

"github.com/klippa-app/go-pdfium/requests"
Expand Down Expand Up @@ -281,8 +280,6 @@ func (p *PdfiumImplementation) FPDF_GetXFAPacketContent(request *requests.FPDF_G
return nil, errors.New("could not get content of the XFA packet")
}

log.Printf("FPDF_GetXFAPacketContent stream length: %d", int(outBufLen))

contentData := make([]byte, uint64(outBufLen))
success = C.FPDF_GetXFAPacketContent(documentHandle.handle, C.int(request.Index), unsafe.Pointer(&contentData[0]), C.ulong(len(contentData)), &outBufLen)
if int(success) == 0 {
Expand Down

0 comments on commit 631a5c4

Please sign in to comment.