Skip to content

Commit 2b139d8

Browse files
author
Roland Hedberg
committed
Modified logging.
1 parent 251d8ec commit 2b139d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jwkest/jws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ def _pick_keys(self, keys, use="", alg=""):
368368
_kty = [_k.lower(), _k.upper(), _k.lower().encode("utf-8"),
369369
_k.upper().encode("utf-8")]
370370
_keys = [k for k in keys if k.kty in _kty]
371-
logger.debug("Keys of key type:{}".format(_keys))
372371
try:
373372
_kid = self["kid"]
374373
except KeyError:
@@ -379,6 +378,7 @@ def _pick_keys(self, keys, use="", alg=""):
379378

380379
pkey = []
381380
for _key in _keys:
381+
logger.debug("KEY: {}".format(_key))
382382
if _kid:
383383
try:
384384
assert _kid == _key.kid

0 commit comments

Comments
 (0)