diff options
author | David Robillard <d@drobilla.net> | 2008-11-17 02:17:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-17 02:17:13 +0000 |
commit | 4e75d186c73c9492b1d1f14c2979cf9fee4e9eaa (patch) | |
tree | e9bf33b5c7eb72a1a46700cad6d5f490c3648feb /src/serialisation | |
parent | 3e23b6e6a57e165a5547a5e455da5163ad0f8efa (diff) | |
download | ingen-4e75d186c73c9492b1d1f14c2979cf9fee4e9eaa.tar.gz ingen-4e75d186c73c9492b1d1f14c2979cf9fee4e9eaa.tar.bz2 ingen-4e75d186c73c9492b1d1f14c2979cf9fee4e9eaa.zip |
Barf less to the console.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1751 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index fac5a656..0bd8b476 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -71,7 +71,7 @@ Parser::parse_document( Redland::Model model(*world->rdf_world, document_uri, document_uri); if (object_uri == document_uri || object_uri == "") - cout << "Parsing document " << object_uri << " (base " << document_uri << ")" << endl; + cout << "Parsing document " << object_uri << endl; else cout << "Parsing " << object_uri << " from " << document_uri << endl; @@ -268,8 +268,6 @@ Parser::parse( if (path_str.length() > 0) { const string uri = path_str.substr(1); target->set_property(uri, "rdf:type", Atom(Atom::URI, rdf_class.to_c_string())); - } else { - cout << "ERROR: Plugin with no URI parsed, ignoring" << endl; } } |