# HG changeset patch # User Kim Alvefur # Date 1698611467 -3600 # Node ID 4a05fbda927f6803c14af1caf67f4360aeb897c0 # Parent ad1ed84fdf138bcacfe82704066777d277241da7 core.certmanager: Tweak log level of message about SNI being required Everything supports SNI today, so this is not useful information. diff -r ad1ed84fdf13 -r 4a05fbda927f core/certmanager.lua --- 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