From b8b6afaf59ad431ac7fb9aa98b470fec8856785b Mon Sep 17 00:00:00 2001 From: "matthias.ringwald@gmail.com" Date: Thu, 7 Mar 2013 17:26:03 +0000 Subject: [PATCH] log actual length for USB transfers --- src/hci_transport_usb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hci_transport_usb.c b/src/hci_transport_usb.c index 464dd139f..7d6cd27b6 100644 --- a/src/hci_transport_usb.c +++ b/src/hci_transport_usb.c @@ -258,12 +258,12 @@ static void handle_completed_transfer(struct libusb_transfer *transfer){ resubmit = 1; } else if (transfer->endpoint == acl_out_addr){ - log_info("acl out done"); + log_info("acl out done, size %u", transfer->actual_length); usb_acl_out_active = 0; resubmit = 0; } else if (transfer->endpoint == 0){ - log_info("command done"); + log_info("command done, size %u", transfer->actual_length); usb_command_active = 0; resubmit = 0;