aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/experts/expert_container.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-01-30 09:40:02 +0100
committerMartin Braun <martin.braun@ettus.com>2017-01-30 09:40:02 +0100
commit211c590f594f83dc8b5fc724d49c1c8d7207d2f2 (patch)
tree16b03b97da7c61930053a0b8699a36d36e9857b2 /host/lib/experts/expert_container.cpp
parent207903d343f6cb520d86e62c2ebee2e847546f7b (diff)
parent75e6ae59b3f4832372c08d7da390c5fdcc283067 (diff)
downloaduhd-211c590f594f83dc8b5fc724d49c1c8d7207d2f2.tar.gz
uhd-211c590f594f83dc8b5fc724d49c1c8d7207d2f2.tar.bz2
uhd-211c590f594f83dc8b5fc724d49c1c8d7207d2f2.zip
Merge branch 'maint'
Diffstat (limited to 'host/lib/experts/expert_container.cpp')
-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);