Remove exc_info for logging.exception

It's redundant and the docs say explicitly that it's ignored.
This commit is contained in:
Ian Cordasco 2016-06-29 15:22:22 -05:00
parent 5b8a875965
commit 8f5348136f
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -158,7 +158,7 @@ class Plugin(object):
try:
self._load(verify_requirements)
except Exception as load_exception:
LOG.exception(load_exception, exc_info=True)
LOG.exception(load_exception)
failed_to_load = exceptions.FailedToLoadPlugin(
plugin=self,
exception=load_exception,