summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-05-08 19:49:01 +0200
committerRobin Gareus <robin@gareus.org>2019-05-08 19:49:01 +0200
commitef283ed29c76aa1216582e541d9342a146b85507 (patch)
treefe26de21c6262f2e73274d3c4da6742372239e03 /libs/ardour/route.cc
parent83f484a3ce8682546243496c3adae7a4bf5f2004 (diff)
NO-OP: Unclutter -DGraph
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index dd542f2274..9d94df8bf8 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -3443,9 +3443,9 @@ Route::all_outputs () const
bool
Route::direct_feeds_according_to_reality (boost::shared_ptr<Route> other, bool* via_send_only)
{
- DEBUG_TRACE (DEBUG::Graph, string_compose ("Feeds? %1\n", _name));
+ DEBUG_TRACE (DEBUG::Graph, string_compose ("Feeds from %1 (-> %2)?\n", _name, other->name()));
if (other->all_inputs().fed_by (_output)) {
- DEBUG_TRACE (DEBUG::Graph, string_compose ("\tdirect FEEDS %2\n", other->name()));
+ DEBUG_TRACE (DEBUG::Graph, string_compose ("\tdirect FEEDS to %1\n", other->name()));
if (via_send_only) {
*via_send_only = false;
}
@@ -3480,10 +3480,7 @@ Route::direct_feeds_according_to_reality (boost::shared_ptr<Route> other, bool*
} else {
DEBUG_TRACE (DEBUG::Graph, string_compose ("\tIOP %1 does NOT feed %2\n", iop->name(), other->name()));
}
- } else {
- DEBUG_TRACE (DEBUG::Graph, string_compose ("\tPROC %1 is not an IOP\n", (*r)->name()));
}
-
}
DEBUG_TRACE (DEBUG::Graph, string_compose ("\tdoes NOT feed %1\n", other->name()));