mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-12-22 03:00:16 +00:00
output traceback when plugin load fails
This commit is contained in:
parent
d22f6a2aa5
commit
bbf1cb8ba2
1 changed files with 1 additions and 1 deletions
|
@ -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__"""
|
||||
|
|
Loading…
Reference in a new issue