aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-10-29 21:31:07 +0100
committerKim Alvefur <zash@zash.se>2023-10-29 21:31:07 +0100
commit2c9c0fab32be47b60c9fd79c3b26d7861f28cfc0 (patch)
treed295c8016ca13a115ec4c1663c36ef45eae5eb86 /core
parent40c7ebddd110486fc98196debd7ba8a222354874 (diff)
downloadprosody-2c9c0fab32be47b60c9fd79c3b26d7861f28cfc0.tar.gz
prosody-2c9c0fab32be47b60c9fd79c3b26d7861f28cfc0.zip
core.certmanager: Tweak log level of message about SNI being required
Everything supports SNI today, so this is not useful information.
Diffstat (limited to 'core')
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index a4acb0a0..183680ee 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -322,7 +322,7 @@ local function create_context(host, mode, ...)
if mode == "server" then
if not user_ssl_config.certificate then
- log("info", "No certificate present in SSL/TLS configuration for %s. SNI will be required.", host);
+ log("debug", "No certificate present in SSL/TLS configuration for %s. SNI will be required.", host);
end
if user_ssl_config.certificate and not user_ssl_config.key then return nil, "No key present in SSL/TLS configuration for "..host; end
end