mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-12-22 03:00:16 +00:00
Added additional logging when a plugin fails to import correctly.
This commit is contained in:
parent
71d72f431f
commit
3f96226e29
1 changed files with 2 additions and 1 deletions
|
@ -109,8 +109,9 @@ class basexmpp(object):
|
|||
if hasattr(self.plugin[plugin], 'xep'):
|
||||
xep = "(XEP-%s) " % self.plugin[plugin].xep
|
||||
logging.debug("Loaded Plugin %s%s" % (xep, self.plugin[plugin].description))
|
||||
except:
|
||||
except Exception, e:
|
||||
logging.error("Unable to load plugin: %s" %(plugin) )
|
||||
logging.exception(e)
|
||||
|
||||
def register_plugins(self):
|
||||
"""Initiates all plugins in the plugins/__init__.__all__"""
|
||||
|
|
Loading…
Reference in a new issue