From e1b2a24221143728d7f78922be0af8f1663edd9a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 17 Nov 2021 18:46:22 +0100 Subject: [PATCH] Fix error message (include plugin ID) --- libs/ardour/lv2_plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index a9d8e9d79a..bf5f503d94 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -1848,10 +1848,10 @@ void LV2Plugin::set_property(uint32_t key, const Variant& value) { if (_patch_port_in_index == (uint32_t)-1) { - error << string_compose (_("LV2<1>: set_property called with unset patch_port_in_index"), name ()) << endmsg; + error << string_compose (_("LV2<%1>: set_property called with unset patch_port_in_index"), name ()) << endmsg; return; } else if (value.type() == Variant::NOTHING) { - error << string_compose (_("LV2<1>: set_property called with void value"), name ()) << endmsg; + error << string_compose (_("LV2<%1>: set_property called with void value"), name ()) << endmsg; return; }