mod_tls: Drop 'TLS negotiation started for ...' to debug level from info
authorMatthew Wild <mwild1@gmail.com>
Tue, 22 Feb 2011 18:29:35 +0000
changeset 4157 1b5a8e071a80
parent 4156 e3282871dd44
child 4158 14581c3f33bd
mod_tls: Drop 'TLS negotiation started for ...' to debug level from info
plugins/mod_tls.lua
--- a/plugins/mod_tls.lua	Tue Feb 22 18:27:31 2011 +0000
+++ b/plugins/mod_tls.lua	Tue Feb 22 18:29:35 2011 +0000
@@ -47,7 +47,7 @@
 		local host = origin.to_host or origin.host;
 		local ssl_ctx = host and hosts[host].ssl_ctx_in or global_ssl_ctx;
 		origin.conn:starttls(ssl_ctx);
-		origin.log("info", "TLS negotiation started for %s...", origin.type);
+		origin.log("debug", "TLS negotiation started for %s...", origin.type);
 		origin.secure = false;
 	else
 		origin.log("warn", "Attempt to start TLS, but TLS is not available on this %s connection", origin.type);