core.certmanager: Tweak log level of message about SNI being required

Everything supports SNI today, so this is not useful information.
This commit is contained in:
Kim Alvefur 2023-10-29 21:31:07 +01:00
parent 40c7ebddd1
commit 2c9c0fab32

View file

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