diff options
Diffstat (limited to 'src/module')
-rw-r--r-- | src/module/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp index e3b93c8f..ff55919d 100644 --- a/src/module/World.cpp +++ b/src/module/World.cpp @@ -55,7 +55,7 @@ load_module(const string& name) if (Glib::file_test(filename, Glib::FILE_TEST_EXISTS)) { module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY); if (*module) { - LOG(info) << "Loaded \"" << name << "\" from " << filename << endl; + LOG(info) << "Loaded `" << name << "' from " << filename << endl; return SharedPtr<Glib::Module>(module); } else { delete module; @@ -71,7 +71,7 @@ load_module(const string& name) Glib::MODULE_BIND_LAZY); if (*module) { - LOG(info) << "Loaded \"" << name << "\" from " << INGEN_MODULE_DIR << endl; + LOG(info) << "Loaded `" << name << "' from " << INGEN_MODULE_DIR << endl; return SharedPtr<Glib::Module>(module); } else if (!module_path_found) { LOG(error) << "Unable to find " << name |