mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-23 19:19:53 +00:00
Fix logging when loading plugins.
This commit is contained in:
parent
2a67a31120
commit
65dbddb6b6
1 changed files with 2 additions and 2 deletions
|
@ -227,14 +227,14 @@ class BaseXMPP(XMLStream):
|
||||||
self.plugin[plugin] = getattr(module, plugin)(self, pconfig)
|
self.plugin[plugin] = getattr(module, plugin)(self, pconfig)
|
||||||
|
|
||||||
# Let XEP/RFC implementing plugins have some extra logging info.
|
# Let XEP/RFC implementing plugins have some extra logging info.
|
||||||
spec = '(CUSTOM) '
|
spec = '(CUSTOM) %s'
|
||||||
if self.plugin[plugin].xep:
|
if self.plugin[plugin].xep:
|
||||||
spec = "(XEP-%s) " % self.plugin[plugin].xep
|
spec = "(XEP-%s) " % self.plugin[plugin].xep
|
||||||
elif self.plugin[plugin].rfc:
|
elif self.plugin[plugin].rfc:
|
||||||
spec = "(RFC-%s) " % self.plugin[plugin].rfc
|
spec = "(RFC-%s) " % self.plugin[plugin].rfc
|
||||||
|
|
||||||
desc = (spec, self.plugin[plugin].description)
|
desc = (spec, self.plugin[plugin].description)
|
||||||
log.debug("Loaded Plugin %s", desc)
|
log.debug("Loaded Plugin %s %s" % desc)
|
||||||
except:
|
except:
|
||||||
log.exception("Unable to load plugin: %s", plugin)
|
log.exception("Unable to load plugin: %s", plugin)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue