Changeset

5779:70bb0df1ffe7

mod_auth_internal_plain: Remove redundant hostname from log messages
author Kim Alvefur <zash@zash.se>
date Sat, 10 Aug 2013 20:06:51 +0200
parents 5778:8ea6fa8459e3
children 5780:bc3bf4ded7e4
files plugins/mod_auth_internal_plain.lua
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_auth_internal_plain.lua	Sat Aug 10 19:53:22 2013 +0200
+++ b/plugins/mod_auth_internal_plain.lua	Sat Aug 10 20:06:51 2013 +0200
@@ -19,7 +19,7 @@
 log("debug", "initializing internal_plain authentication provider for host '%s'", host);
 
 function provider.test_password(username, password)
-	log("debug", "test password for user %s at host %s", username, host);
+	log("debug", "test password for user '%s'", username);
 	local credentials = accounts:get(username) or {};
 
 	if password == credentials.password then
@@ -30,7 +30,7 @@
 end
 
 function provider.get_password(username)
-	log("debug", "get_password for username '%s' at host '%s'", username, host);
+	log("debug", "get_password for username '%s'", username);
 	return (accounts:get(username) or {}).password;
 end
 
@@ -46,7 +46,7 @@
 function provider.user_exists(username)
 	local account = accounts:get(username);
 	if not account then
-		log("debug", "account not found for username '%s' at host '%s'", username, host);
+		log("debug", "account not found for username '%s'", username);
 		return nil, "Auth failed. Invalid username";
 	end
 	return true;