summaryrefslogtreecommitdiff
path: root/src/x509.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/x509.erl')
-rw-r--r--src/x509.erl3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/x509.erl b/src/x509.erl
index 544c6a7..87d9c0c 100644
--- a/src/x509.erl
+++ b/src/x509.erl
@@ -108,11 +108,8 @@ normalise_chain(AcceptableRootCerts, [BottomCert|Rest], MaxChainLength) ->
signer(_Cert, []) ->
notfound;
signer(Cert, [H|T]) ->
- lager:debug("Is ~p signed by ~p?", [cert_string(Cert), cert_string(H)]),
case signed_by_p(Cert, H) of
true ->
- lager:debug("~p is signed by ~p",
- [cert_string(Cert), cert_string(H)]),
H;
false ->
signer(Cert, T)