From: Daniel Elstner Date: Mon, 23 Nov 2015 19:36:08 +0000 (+0100) Subject: session: Remove debug spew on I/O events X-Git-Tag: libsigrok-0.4.0~108 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=3393f185a5109832db68966a44b46204cc5c53c5;ds=sidebyside session: Remove debug spew on I/O events This really is a bit much with some drivers that do lots of small I/O transfers. --- diff --git a/src/session.c b/src/session.c index c84edcbf..f9df6e1f 100644 --- a/src/session.c +++ b/src/session.c @@ -117,21 +117,12 @@ static gboolean fd_source_dispatch(GSource *source, GSourceFunc callback, void *user_data) { struct fd_source *fsource; - const char *name; unsigned int revents; gboolean keep; fsource = (struct fd_source *)source; - name = g_source_get_name(source); revents = fsource->pollfd.revents; - if (revents != 0) { - sr_spew("%s: %s " G_POLLFD_FORMAT ", revents 0x%.2X", - __func__, name, fsource->pollfd.fd, revents); - } else { - sr_spew("%s: %s " G_POLLFD_FORMAT ", timed out", - __func__, name, fsource->pollfd.fd); - } if (!callback) { sr_err("Callback not set, cannot dispatch event."); return G_SOURCE_REMOVE; diff --git a/src/usb.c b/src/usb.c index 02510cae..c3c34e00 100644 --- a/src/usb.c +++ b/src/usb.c @@ -134,10 +134,6 @@ static gboolean usb_source_dispatch(GSource *source, pollfd = g_ptr_array_index(usource->pollfds, i); revents |= pollfd->revents; } - if (revents != 0) - sr_spew("%s: revents 0x%.2X", __func__, revents); - else - sr_spew("%s: timed out", __func__); if (!callback) { sr_err("Callback not set, cannot dispatch event.");