From 25f20faf0df4c2f124c4dea0786dc042fcd41ed3 Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Wed, 10 Sep 2014 22:55:50 +0200 Subject: [PATCH] input: Add debug output. --- src/input/input.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/input.c b/src/input/input.c index a5182e2b..6bea92b5 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -512,6 +512,7 @@ SR_API struct sr_dev_inst *sr_input_dev_inst_get(const struct sr_input *in) */ SR_API int sr_input_send(const struct sr_input *in, GString *buf) { + sr_spew("Sending %d bytes to %s module.", buf->len, in->module->id); return in->module->receive(in, buf); }