LV2: don't print warning messages from rt-thread

This commit is contained in:
Robin Gareus
2025-11-22 18:04:23 +01:00
parent 8456af6d8d
commit 7ec70c66ff

View File

@@ -3317,10 +3317,14 @@ LV2Plugin::connect_and_run(BufferSet& bufs,
// TODO: This should emit the control's Changed signal
PropertyChanged(prop_id, _property_values[prop_id]);
} else {
#ifndef NDEBUG
std::cerr << "warning: patch:Set for unknown property" << std::endl;
#endif
}
} else {
#ifndef NDEBUG
std::cerr << "warning: patch:Set for unsupported property" << std::endl;
#endif
}
}
}