aboutsummaryrefslogtreecommitdiffstats
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-18 20:59:22 -0800
commitd2cbbeb4721e77fe505ff468d4b67f544f91da08 (patch)
tree65cd483ef16808e21bfc730474d0ee4a02155e36
parentecd7408884898391d759411d0bc6dc932e487fa6 (diff)
downloaduhd-d2cbbeb4721e77fe505ff468d4b67f544f91da08.tar.gz
uhd-d2cbbeb4721e77fe505ff468d4b67f544f91da08.tar.bz2
uhd-d2cbbeb4721e77fe505ff468d4b67f544f91da08.zip
nirio: Demote rpc client start/stop log messages to DEBUG
-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 fe89b95d3..80ba20320 100644
--- a/host/include/uhd/transport/nirio/rpc/rpc_client.hpp
+++ b/host/include/uhd/transport/nirio/rpc/rpc_client.hpp
@@ -58,11 +58,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.");
}
}