Clean up debug logging (#5347)

Remove some spurious stuff, clarify some other stuff
This commit is contained in:
Richard van der Hoff 2019-06-05 10:35:40 +01:00 committed by GitHub
parent 016af01598
commit 2615c6bd9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 8 deletions

View file

@ -866,10 +866,6 @@ def _handle_key_deferred(verify_request):
json_object = verify_request.json_object
logger.debug(
"Got key %s %s:%s for server %s, verifying"
% (key_id, verify_key.alg, verify_key.version, server_name)
)
try:
verify_signed_json(json_object, server_name, verify_key)
except SignatureVerifyException as e: