Software /
code /
prosody
Diff
plugins/mod_tls.lua @ 4157:1b5a8e071a80
mod_tls: Drop 'TLS negotiation started for ...' to debug level from info
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 22 Feb 2011 18:29:35 +0000 |
parent | 3583:ef86ba720f00 |
child | 4244:19c9bf88ec89 |
line wrap: on
line diff
--- 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);