diff --git a/epson/library_bridge.go b/epson/library_bridge.go index ab649e6..321c0cf 100644 --- a/epson/library_bridge.go +++ b/epson/library_bridge.go @@ -103,12 +103,6 @@ func print_image(path *C.char, data *C.uchar, size C.int) { return } - go func() { - for status := range p.ASBStatus() { - log.Printf("received ASB status: %#v\n", status) - } - }() - byteData := C.GoBytes(unsafe.Pointer(data), C.int(size)) imgReader := bytes.NewReader(byteData) img, _, err := image.Decode(imgReader)