Software /
code /
prosody
Changeset
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 |
parents | 4156:e3282871dd44 |
children | 4158:14581c3f33bd |
files | plugins/mod_tls.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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);