From 0583e0b72b6bf7064c2e8af498b18f0bc168485f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 21 Nov 2012 03:49:32 +0000 Subject: Move Configuration from Raul to Ingen. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4836 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/Parser.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/serialisation/Parser.cpp') diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index a6036c32..0c15b0b4 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -229,7 +229,12 @@ parse_block(Ingen::World* world, Sord::Iter i = model.find(subject, ingen_prototype, nil); if (i.end() || i.get_object().type() != Sord::Node::URI) { - world->log().error("Block missing mandatory ingen:prototype\n"); + if (!i.end()) { + std::cerr << "type: " << i.get_object().type() << std::endl; + } + world->log().error( + Raul::fmt("Block %1% (%2%) missing mandatory ingen:prototype\n") % + subject.to_string() % path); return boost::optional(); } -- cgit v1.2.1