Adding ACME Support (#178)

This commit is contained in:
kevgliss
2016-06-27 15:57:53 -07:00
committed by GitHub
parent f846d78778
commit 5021e8ba91
9 changed files with 369 additions and 3 deletions

View File

@ -58,8 +58,8 @@ class InstanceManager(object):
results.append(cls())
else:
results.append(cls)
except Exception:
current_app.logger.exception('Unable to import %s', cls_path)
except Exception as e:
current_app.logger.exception('Unable to import %s. Reason: %s', cls_path, e)
continue
self.cache = results