additional logging to CRL checks

This commit is contained in:
dandds
2018-08-17 16:05:49 -04:00
parent dcea156dc5
commit 60509dab8c
2 changed files with 10 additions and 2 deletions

View File

@@ -141,5 +141,5 @@ def make_crl_validator(app):
crl_locations = []
for filename in pathlib.Path(app.config["CRL_DIRECTORY"]).glob("*"):
crl_locations.append(filename.absolute())
app.crl_cache = CRLCache(app.config["CA_CHAIN"], crl_locations)
app.crl_cache = CRLCache(app.config["CA_CHAIN"], crl_locations, logger=app.logger)