diff options
author | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
commit | 0c9e861caa8b1eed5068942edc35d5f91bac816e (patch) | |
tree | b241856ddf49e1b1192f8ea442d1733d9d31b2f2 /src/serialisation | |
parent | 8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4 (diff) | |
download | ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.tar.gz ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.tar.bz2 ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.zip |
Work towards translatable strings and a cleaner log interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4338 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index c1cce1ee..96afc708 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -32,7 +32,7 @@ #include "sord/sordmm.hpp" #include "sratom/sratom.h" -#define LOG(s) s << "[Parser] " +#define LOG(s) (s("[Parser] ")) #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" @@ -375,7 +375,7 @@ parse_patch(Ingen::Shared::World* world, PortRecord port_record; const int index = get_port(world, model, port, patch_path, port_record); if (index < 0) { - LOG(error) << "Invalid port " << port << endl; + LOG(Raul::error) << "Invalid port " << port << endl; return boost::optional<Path>(); } @@ -580,11 +580,11 @@ Parser::parse_file(Ingen::Shared::World* world, serd_env_free(env); - LOG(info) << "Parsing " << path << endl; + LOG(Raul::info)(Raul::fmt("Parsing %1%\n") % path); if (parent) - LOG(info) << "Parent: " << *parent << endl; + LOG(Raul::info)(Raul::fmt("Parent: %1%\n") % *parent); if (symbol) - LOG(info) << "Symbol: " << *symbol << endl; + LOG(Raul::info)(Raul::fmt("Symbol: %1%\n") % symbol->c_str()); boost::optional<Path> parsed_path = parse(world, target, model, path, parent, symbol, data); @@ -593,7 +593,7 @@ Parser::parse_file(Ingen::Shared::World* world, target->set_property(*parsed_path, "http://drobilla.net/ns/ingen#document", world->forge().alloc_uri(uri)); } else { - LOG(warn) << "Document URI lost" << endl; + LOG(Raul::warn)("Document URI lost\n"); } return parsed_path; @@ -614,7 +614,7 @@ Parser::parse_string(Ingen::Shared::World* world, model.load_string(env, SERD_TURTLE, str.c_str(), str.length(), base_uri); serd_env_free(env); - LOG(info) << "Parsing string"; + LOG(Raul::info) << "Parsing string"; if (!base_uri.empty()) info << " (base " << base_uri << ")"; info << endl; |