From 90f5eb4a31bebeb315d4c36f20b1aefe110657d0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 15 Jul 2013 20:35:31 -0400 Subject: more plugin state debugging --- libs/ardour/route.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 9d7dc8792b..d48fbeff96 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -2559,12 +2559,15 @@ Route::set_processor_state (const XMLNode& node) } if (boost::dynamic_pointer_cast(processor)) { + cerr << "Working on plugin processor state for " << processor->name() << endl; #ifndef NO_PLUGIN_STATE + cerr << "plugin state allowed\n"; if (processor->set_state (**niter, Stateful::current_state_version) != 0) { /* This processor could not be configured. Turn it into a UnknownProcessor */ processor.reset (new UnknownProcessor (_session, **niter)); } #else + cerr << "plugin state dis-allowed\n"; /* plugin, with NO_PLUGIN_STATE defined * =>::set_state() not allowed. Do not * display a message here - things will -- cgit v1.2.3