summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libs/engine/LADSPANode.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libs/engine/LADSPANode.cpp b/src/libs/engine/LADSPANode.cpp
index 921e6304..7e19a6b6 100644
--- a/src/libs/engine/LADSPANode.cpp
+++ b/src/libs/engine/LADSPANode.cpp
@@ -188,12 +188,14 @@ LADSPANode::instantiate()
// Work around broke-ass crackhead plugins
if (default_val < min) {
- cerr << "WARNING: Broken LADSPA: Port default < minimum. Minimum adjusted." << endl;
+ cerr << "WARNING: Broken LADSPA " << _descriptor->UniqueID
+ << ": Port default < minimum. Minimum adjusted." << endl;
min = default_val;
}
if (default_val > max) {
- cerr << "WARNING: Broken LADSPA: Port default > maximum. Maximum adjusted." << endl;
+ cerr << "WARNING: Broken LADSPA " << _descriptor->UniqueID
+ << ": Maximum adjusted." << endl;
max = default_val;
}