summaryrefslogtreecommitdiff
path: root/src/x509.erl
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2015-04-10 16:44:55 +0200
committerLinus Nordberg <linus@nordberg.se>2015-04-10 16:44:55 +0200
commit8e5aa882378ca72f2e0b80c9800e09f4234c8a8e (patch)
tree4ef2ca40683bd68a2658f5799f40ef5cbbc742d5 /src/x509.erl
parent6402eeefc18c47b7dceea5e0dda0b8aeec6719bd (diff)
Remove an extra annoying debug log printout.
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)