From 019e71b8aed39251fd0b7596ed80162c13694d0e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 11 Aug 2012 23:40:51 +0000 Subject: Remove assertion. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4659 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/LV2Node.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/server/LV2Node.cpp') diff --git a/src/server/LV2Node.cpp b/src/server/LV2Node.cpp index 8857edbb..2a8fb03d 100644 --- a/src/server/LV2Node.cpp +++ b/src/server/LV2Node.cpp @@ -92,7 +92,7 @@ LV2Node::make_instance(URIs& uris, ? port->prepared_buffer(voice).get() : port->buffer(voice).get(); if (port->is_morph() && port->is_a(PortType::CV)) { - Raul::info(Raul::fmt("Morphing %1% to CV\n") % port->path()); + //Raul::info(Raul::fmt("Morphing %1% to CV\n") % port->path()); if (morph_iface) { morph_iface->morph_port( inst->lv2_handle, p, uris.lv2_CVPort, NULL); @@ -116,12 +116,12 @@ LV2Node::make_instance(URIs& uris, inst->lv2_handle, p, NULL); if (type == _uris.lv2_ControlPort) { port->set_type(PortType::CONTROL, 0); - Raul::info(Raul::fmt("Auto-morphed %1% to control\n") - % port->path()); + /*Raul::info(Raul::fmt("Auto-morphed %1% to control\n") + % port->path());*/ } else if (type == _uris.lv2_CVPort) { port->set_type(PortType::CV, 0); - Raul::info(Raul::fmt("Auto-morphed %1% to CV\n") - % port->path()); + /*Raul::info(Raul::fmt("Auto-morphed %1% to CV\n") + % port->path());*/ } else { Raul::error(Raul::fmt("%1% auto-morphed to unknown type %2%\n") % port->path() % type); -- cgit v1.2.1