mod_tls: Remove debug statement
authorKim Alvefur <zash@zash.se>
Sun, 16 Jun 2013 13:01:31 +0000 (15:01 +0200)
committerKim Alvefur <zash@zash.se>
Sun, 16 Jun 2013 13:01:31 +0000 (15:01 +0200)
plugins/mod_tls.lua

index e167cf950ec1db408d288ea779a27c153dd2e419..1af8dbe9e134bbe81fc8bb80997d323be826d8b0 100644 (file)
@@ -55,7 +55,6 @@ local function can_do_tls(session)
                return true;
        end
        if session.type == "c2s_unauthed" then
-               module:log("debug", "session.ssl_ctx = ssl_ctx_c2s;")
                session.ssl_ctx = ssl_ctx_c2s;
        elseif session.type == "s2sin_unauthed" and allow_s2s_tls then
                session.ssl_ctx = ssl_ctx_s2sin;