From 8c6a7c4ad5f5cb6b3b583aefbfe6b0cf57414294 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Feb 2011 03:09:23 +0000 Subject: Consistent log output. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2972 a436a847-0d15-0410-975c-d299462d15a1 --- src/module/Module.hpp | 8 ++++++-- src/module/World.cpp | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'src/module') diff --git a/src/module/Module.hpp b/src/module/Module.hpp index 7c67a310..af5732af 100644 --- a/src/module/Module.hpp +++ b/src/module/Module.hpp @@ -18,8 +18,9 @@ #ifndef INGEN_MODULE_MODULE_HPP #define INGEN_MODULE_MODULE_HPP -#include #include + +#include "raul/log.hpp" #include "raul/SharedPtr.hpp" namespace Ingen { @@ -32,7 +33,10 @@ class World; * All components of Ingen reside in one of these. */ struct Module { - virtual ~Module() {} + virtual ~Module() { + Raul::info << "[Module] Unloading " << library->get_name() << std::endl; + } + virtual void load(Ingen::Shared::World* world) = 0; SharedPtr library; 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(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(module); } else if (!module_path_found) { LOG(error) << "Unable to find " << name -- cgit v1.2.1