aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorDerek Kozel <derek.kozel@gmail.com>2016-12-16 17:12:26 +0000
committerMartin Braun <martin.braun@ettus.com>2017-01-30 09:38:04 +0100
commitaa41b4b22852efcd776396f2d44540283a5b2dbd (patch)
treebe66192876f74655ed4ddd18f0eb07359027fb9b /host/lib
parenta7d7c9d520ea59912e7cf7d22bbfd42cc96003ee (diff)
downloaduhd-aa41b4b22852efcd776396f2d44540283a5b2dbd.tar.gz
uhd-aa41b4b22852efcd776396f2d44540283a5b2dbd.tar.bz2
uhd-aa41b4b22852efcd776396f2d44540283a5b2dbd.zip
TwinRX: Clarify Expert log messages on resolves
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/experts/expert_container.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/experts/expert_container.cpp b/host/lib/experts/expert_container.cpp
index b9c78f9f5..853e3e4b7 100644
--- a/host/lib/experts/expert_container.cpp
+++ b/host/lib/experts/expert_container.cpp
@@ -100,7 +100,7 @@ public:
{
boost::lock_guard<boost::recursive_mutex> resolve_lock(_resolve_mutex);
boost::lock_guard<boost::mutex> lock(_mutex);
- EX_LOG(0, str(boost::format("resolve_from(%s)") % node_name));
+ EX_LOG(0, "resolve_from (overridden to resolve_all)");
// Do a full resolve of the graph
// Not optimizing the traversal using node_name to reduce experts complexity
_resolve_helper("", "", false);
@@ -110,7 +110,7 @@ public:
{
boost::lock_guard<boost::recursive_mutex> resolve_lock(_resolve_mutex);
boost::lock_guard<boost::mutex> lock(_mutex);
- EX_LOG(0, str(boost::format("resolve_to(%s)") % node_name));
+ EX_LOG(0, "resolve_to (overridden to resolve_all)");
// Do a full resolve of the graph
// Not optimizing the traversal using node_name to reduce experts complexity
_resolve_helper("", "", false);