summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/LV2Node.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/LV2Node.cpp b/src/server/LV2Node.cpp
index 3d1e4a52..a3c0faa4 100644
--- a/src/server/LV2Node.cpp
+++ b/src/server/LV2Node.cpp
@@ -313,7 +313,8 @@ LV2Node::instantiate(BufferFactory& bufs)
}
if (port_type == PortType::UNKNOWN || direction == UNKNOWN) {
- Raul::warn << "Unknown type or direction for port `" << port_sym << "'" << endl;
+ Raul::error(Raul::fmt("<%1%> port %2% has unknown type or direction\n")
+ % _lv2_plugin->uri() % port_sym);
ret = false;
break;
}