output traceback when plugin load fails

This commit is contained in:
Thom Nichols 2010-06-25 16:31:38 -04:00
parent d22f6a2aa5
commit bbf1cb8ba2

View file

@ -110,7 +110,7 @@ class basexmpp(object):
xep = "(XEP-%s) " % self.plugin[plugin].xep
logging.debug("Loaded Plugin %s%s" % (xep, self.plugin[plugin].description))
except:
logging.error("Unable to load plugin: %s" %(plugin) )
logging.exception("Unable to load plugin: %s", plugin )
def register_plugins(self):
"""Initiates all plugins in the plugins/__init__.__all__"""