From: Uwe Hermann Date: Sun, 8 Apr 2018 18:56:34 +0000 (+0200) Subject: zketech-ebd-usb: Drop unneeded log message. X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=d4b3f44fa798d1cc080bf59809ae03ac3642723a;hp=b4bf6b3b4f66437fc4e8b1f2010fa34c21634b7e zketech-ebd-usb: Drop unneeded log message. The number of bytes sent is already logged by the libsigrok serial code. --- diff --git a/src/hardware/zketech-ebd-usb/protocol.c b/src/hardware/zketech-ebd-usb/protocol.c index be4aa285..3a7fc546 100644 --- a/src/hardware/zketech-ebd-usb/protocol.c +++ b/src/hardware/zketech-ebd-usb/protocol.c @@ -44,7 +44,6 @@ static int send_cmd(struct sr_serial_dev_inst *serial, uint8_t buf[], size_t cou sr_err("Error sending command: %d.", ret); return ret; } - sr_dbg("Sent %d bytes.", ret); return (ret == (int)count) ? SR_OK : SR_ERR; }