summaryrefslogtreecommitdiff
path: root/i/marvin/src/log/log.cc
diff options
context:
space:
mode:
Diffstat (limited to 'i/marvin/src/log/log.cc')
-rw-r--r--i/marvin/src/log/log.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/i/marvin/src/log/log.cc b/i/marvin/src/log/log.cc
index 6a4f685..cd7bb32 100644
--- a/i/marvin/src/log/log.cc
+++ b/i/marvin/src/log/log.cc
@@ -52,6 +52,12 @@ Log::Log (const char *module, const char *instance)
(std::string ("log.logger.default"), "stdout")));
}
+Log::~Log (void)
+{
+ delete loggerNull_;
+ delete logger_;
+}
+
/// Crée un nouveau LogMessage.
LogMessage
Log::operator() (const char *msg, Level level/*info*/) const