From bbca7aae0acb0d3803f7527e3af3517765e75d22 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 3 Feb 2010 18:30:13 +0000 Subject: Consistent message style. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2414 a436a847-0d15-0410-975c-d299462d15a1 --- src/module/World.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/module') diff --git a/src/module/World.cpp b/src/module/World.cpp index ff55919d..43d89d6c 100644 --- a/src/module/World.cpp +++ b/src/module/World.cpp @@ -100,7 +100,7 @@ World::load(const char* name) modules.insert(make_pair(string(name), module)); return true; } else { - LOG(error) << "Failed to load module " << name << endl; + LOG(error) << "Failed to load module `" << name << "'" << endl; return false; } } @@ -123,7 +123,7 @@ World::interface(const std::string& url) const string scheme = url.substr(0, url.find(":")); const InterfaceFactories::const_iterator i = interface_factories.find(scheme); if (i == interface_factories.end()) { - warn << "Unknown URI scheme `'" << scheme << "'" << endl; + warn << "Unknown URI scheme `" << scheme << "'" << endl; return SharedPtr(); } @@ -137,7 +137,7 @@ World::run(const std::string& mime_type, const std::string& filename) { const ScriptRunners::const_iterator i = script_runners.find(mime_type); if (i == script_runners.end()) { - warn << "Unknown script MIME type `'" << mime_type << "'" << endl; + warn << "Unknown script MIME type `" << mime_type << "'" << endl; return false; } -- cgit v1.2.1