don't log info ssl messages

This commit is contained in:
Alexander Strizhakov 2020-02-21 14:28:16 +03:00
parent ad8f26c0a4
commit 6806df80dd
No known key found for this signature in database
GPG key ID: 022896A53AEF1381

View file

@ -58,7 +58,8 @@ defp add_scheme_opts(opts, %URI{scheme: "https", host: host, port: port}) do
depth: 20,
reuse_sessions: false,
verify_fun:
{&:ssl_verify_hostname.verify_fun/3, [check_hostname: Adapter.domain_or_fallback(host)]}
{&:ssl_verify_hostname.verify_fun/3, [check_hostname: Adapter.domain_or_fallback(host)]},
log_level: :warning
]
]