aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/libusb1_base.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-04-05 23:18:08 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-05 23:18:08 -0700
commitaf75b87e51a7c555a61f5f40f0d19f2fde04e43b (patch)
tree0f33663855098a165970e3249a9098b3be812371 /host/lib/transport/libusb1_base.cpp
parent4ab72eb9991d503d8cd329b31572d966ef0e1ae8 (diff)
downloaduhd-af75b87e51a7c555a61f5f40f0d19f2fde04e43b.tar.gz
uhd-af75b87e51a7c555a61f5f40f0d19f2fde04e43b.tar.bz2
uhd-af75b87e51a7c555a61f5f40f0d19f2fde04e43b.zip
logging: Demoted a number of DEBUG messages to TRACE
Diffstat (limited to 'host/lib/transport/libusb1_base.cpp')
-rw-r--r--host/lib/transport/libusb1_base.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/transport/libusb1_base.cpp b/host/lib/transport/libusb1_base.cpp
index 2a6fc2b8a..24c9e3471 100644
--- a/host/lib/transport/libusb1_base.cpp
+++ b/host/lib/transport/libusb1_base.cpp
@@ -275,15 +275,15 @@ public:
{
int ret;
ret = libusb_clear_halt(this->get(), recv_endpoint | 0x80);
- UHD_LOGGER_DEBUG("USB") << "usb device handle: recv endpoint clear: " << libusb_error_name(ret) ;
+ UHD_LOGGER_TRACE("USB") << "usb device handle: recv endpoint clear: " << libusb_error_name(ret) ;
ret = libusb_clear_halt(this->get(), send_endpoint | 0x00);
- UHD_LOGGER_DEBUG("USB") << "usb device handle: send endpoint clear: " << libusb_error_name(ret) ;
+ UHD_LOGGER_TRACE("USB") << "usb device handle: send endpoint clear: " << libusb_error_name(ret) ;
}
void reset_device(void)
{
int ret = libusb_reset_device(this->get());
- UHD_LOGGER_DEBUG("USB") << "usb device handle: dev Reset: " << libusb_error_name(ret) ;
+ UHD_LOGGER_TRACE("USB") << "usb device handle: dev Reset: " << libusb_error_name(ret) ;
}
private: