summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-02-21 14:28:16 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-02-21 14:28:16 +0300
commit6806df80ddb1e52aef2b89b923d9a3e2844b5aeb (patch)
treede47a9a3aeacf3fbcf705e7af676c9eea0dcf649
parentad8f26c0a4a0a579e93547e78313d3e4ecef6ed5 (diff)
downloadpleroma-6806df80ddb1e52aef2b89b923d9a3e2844b5aeb.tar.gz
pleroma-6806df80ddb1e52aef2b89b923d9a3e2844b5aeb.zip
don't log info ssl messages
-rw-r--r--lib/pleroma/http/adapter/gun.ex3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/http/adapter/gun.ex b/lib/pleroma/http/adapter/gun.ex
index fc40b324a..0a6872ad6 100644
--- a/lib/pleroma/http/adapter/gun.ex
+++ b/lib/pleroma/http/adapter/gun.ex
@@ -58,7 +58,8 @@ defmodule Pleroma.HTTP.Adapter.Gun 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
]
]