aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/nirio
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/nirio
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/nirio')
-rw-r--r--host/lib/transport/nirio/rpc/rpc_client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/transport/nirio/rpc/rpc_client.cpp b/host/lib/transport/nirio/rpc/rpc_client.cpp
index 4dfcd29e0..96f98ec20 100644
--- a/host/lib/transport/nirio/rpc/rpc_client.cpp
+++ b/host/lib/transport/nirio/rpc/rpc_client.cpp
@@ -57,7 +57,7 @@ rpc_client::rpc_client (
tcp::resolver::iterator iterator = resolver.resolve(query);
boost::asio::connect(_socket, iterator);
- UHD_LOGGER_DEBUG("NIRIO") << "rpc_client connected to server." ;
+ UHD_LOGGER_TRACE("NIRIO") << "rpc_client connected to server." ;
try {
//Perform handshake
@@ -75,7 +75,7 @@ rpc_client::rpc_client (
_hshake_args_client.version >= _hshake_args_server.oldest_comp_version &&
status)
{
- UHD_LOGGER_DEBUG("NIRIO") << "rpc_client bound to server." ;
+ UHD_LOGGER_TRACE("NIRIO") << "rpc_client bound to server." ;
_wait_for_next_response_header();
//Spawn a thread for the io_service callback handler. This thread will run until rpc_client is destroyed.
@@ -84,7 +84,7 @@ rpc_client::rpc_client (
UHD_LOGGER_DEBUG("NIRIO") << "rpc_client handshake failed." ;
_exec_err.assign(boost::asio::error::connection_refused, boost::asio::error::get_system_category());
}
- UHD_LOGGER_DEBUG("NIRIO") << boost::format("rpc_client archive = %d, rpc_server archive = %d\n.") %
+ UHD_LOGGER_TRACE("NIRIO") << boost::format("rpc_client archive = %d, rpc_server archive = %d\n.") %
_hshake_args_client.boost_archive_version %
_hshake_args_server.boost_archive_version;
} catch (boost::exception&) {