aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-02-15 16:57:17 -0800
committerMartin Braun <martin.braun@ettus.com>2019-02-22 16:14:20 -0800
commit4dc8ea59bd1c054b674a6545194d0b901855dec4 (patch)
tree62ba7e1dc334de83681f0ea95bf1ab6030eea143 /host
parentd05fb0ded0cb1228c95c2aface0129524a82e831 (diff)
downloaduhd-4dc8ea59bd1c054b674a6545194d0b901855dec4.tar.gz
uhd-4dc8ea59bd1c054b674a6545194d0b901855dec4.tar.bz2
uhd-4dc8ea59bd1c054b674a6545194d0b901855dec4.zip
nirio: Demote rpc client start/stop log messages to DEBUG
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/transport/nirio/rpc/rpc_client.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/transport/nirio/rpc/rpc_client.hpp b/host/include/uhd/transport/nirio/rpc/rpc_client.hpp
index 536210c31..2e76d0aa5 100644
--- a/host/include/uhd/transport/nirio/rpc/rpc_client.hpp
+++ b/host/include/uhd/transport/nirio/rpc/rpc_client.hpp
@@ -57,11 +57,11 @@ private:
inline void _stop_io_service()
{
if (_io_service_thread.get()) {
- UHD_LOGGER_INFO("NIRIO") << "rpc_client stopping...";
+ UHD_LOG_DEBUG("NIRIO", "rpc_client stopping...");
_io_service.stop();
_io_service_thread->join();
_io_service_thread.reset();
- UHD_LOGGER_INFO("NIRIO") << "rpc_client stopped.";
+ UHD_LOG_DEBUG("NIRIO", "rpc_client stopped.");
}
}