diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/transport/nirio/rpc/rpc_client.hpp | 4 |
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."); } } |