# HG changeset patch # User Matthew Wild # Date 1298399375 0 # Node ID a395540f25e3e4f11c0108f5ec03a92822feebd5 # Parent 1cad1c3495dd9b4f8f020e0f7e06a86afcf31e04 mod_tls: Drop 'TLS negotiation started for ...' to debug level from info diff -r 1cad1c3495dd -r a395540f25e3 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);