Software /
code /
prosody
Changeset
13294:4a05fbda927f
core.certmanager: Tweak log level of message about SNI being required
Everything supports SNI today, so this is not useful information.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 29 Oct 2023 21:31:07 +0100 |
parents | 13293:ad1ed84fdf13 |
children | 13295:b788307ca06a |
files | core/certmanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/certmanager.lua Sat Oct 28 13:15:56 2023 +0100 +++ b/core/certmanager.lua Sun Oct 29 21:31:07 2023 +0100 @@ -322,7 +322,7 @@ 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