From ad80d86a735f88d49f8b7cda60fc50eda07765c6 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 26 Jul 2012 20:09:57 -0500 Subject: [PATCH] Module: logging module (un)loading at info rather than debug --- Module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Module.py b/Module.py index df575cb..c16ba23 100644 --- a/Module.py +++ b/Module.py @@ -48,7 +48,7 @@ class Module(object): self.db_init() # print what was loaded, for debugging - self.log.debug("Loaded " + self.__class__.__name__) + self.log.info("Loaded " + self.__class__.__name__) def register_handlers(self): """Hook handler functions into the IRC library. This is called when the @@ -147,7 +147,7 @@ class Module(object): """ self.is_shutdown = True - self.log.debug("Unloading " + self.__class__.__name__) + self.log.info("Unloading " + self.__class__.__name__) def remove_metaoptions(self, list): """Remove metaoptions from provided list, which was probably from a config file."""