core.certmanager: Tweak log level of message about SNI being required
authorKim Alvefur <zash@zash.se>
Sun, 29 Oct 2023 21:31:07 +0100
changeset 13298 4a05fbda927f
parent 13297 ad1ed84fdf13
child 13299 b788307ca06a
core.certmanager: Tweak log level of message about SNI being required Everything supports SNI today, so this is not useful information.
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