summaryrefslogtreecommitdiffstats
path: root/src/module/World.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/module/World.cpp')
-rw-r--r--src/module/World.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp
index 67bd7aaf..4cdb9272 100644
--- a/src/module/World.cpp
+++ b/src/module/World.cpp
@@ -62,7 +62,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) << "Loading " << filename << endl;
return SharedPtr<Glib::Module>(module);
} else {
delete module;
@@ -79,7 +79,7 @@ load_module(const string& name)
module->make_resident();
if (*module) {
- LOG(info) << "Loaded `" << name << "' from " << INGEN_MODULE_DIR << endl;
+ LOG(info) << "Loading " << Shared::module_path(name) << endl;
return SharedPtr<Glib::Module>(module);
} else if (!module_path_found) {
LOG(error) << "Unable to find " << name