changeset 2699:dae655657a92

mod_log_auth: log into session
author Georg Lukas <georg@op-co.de>
date Wed, 19 Apr 2017 13:45:18 +0200
parents 88205b77e385
children 7a5dae85f26f
files mod_log_auth/mod_log_auth.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mod_log_auth/mod_log_auth.lua	Wed Apr 19 06:45:49 2017 +0200
+++ b/mod_log_auth/mod_log_auth.lua	Wed Apr 19 13:45:18 2017 +0200
@@ -6,7 +6,7 @@
 	module:hook("authentication-failure", function (event)
 		local session = event.session;
 		local username = session.username or session.sasl_handler and session.sasl_handler.username or "?";
-		module:log("info", "Failed authentication attempt (%s) for user %s from IP: %s",
+		session.log("info", "Failed authentication attempt (%s) for user %s from IP: %s",
 			event.condition or "unknown-condition", username, session.ip or "?");
 	end);
 end
@@ -14,6 +14,6 @@
 if mode == "success" or mode == "all" then
 	module:hook("authentication-success", function (event)
 		local session = event.session;
-		module:log("info", "Successful authentication as %s from IP: %s", session.username, session.ip or "?");
+		session.log("info", "Successful authentication as %s from IP: %s", session.username, session.ip or "?");
 	end);
 end