Software /
code /
prosody-modules
Changeset
1393:4baaa5a66a5a
mod_log_sasl_mech: Log SASL mechanism attached to session
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 25 Apr 2014 17:11:33 +0200 |
parents | 1392:d99c10fc4d19 |
children | 1394:50f986deb3f7 |
files | mod_log_sasl_mech/mod_log_sasl_mech.lua |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_log_sasl_mech/mod_log_sasl_mech.lua Thu Apr 24 18:34:10 2014 +0200 +++ b/mod_log_sasl_mech/mod_log_sasl_mech.lua Fri Apr 25 17:11:33 2014 +0200 @@ -1,5 +1,6 @@ module:hook("authentication-success", function (event) - local sasl_handler = event.session.sasl_handler; - module:log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth"); + local session = event.session; + local sasl_handler = session.sasl_handler; + session.log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth"); end);