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
1 changed files with 2 additions and 1 deletions

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
]
]