aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_auth_internal_plain.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-08-10 20:09:33 +0200
committerKim Alvefur <zash@zash.se>2013-08-10 20:09:33 +0200
commit692e6d1221927c370fae7d3885ac543d877f0e3d (patch)
treeee56a4ffae681408c9b08a927c90d35ca910de68 /plugins/mod_auth_internal_plain.lua
parent5dc7169a08a3261e176b60844a6024994cb4d06a (diff)
downloadprosody-692e6d1221927c370fae7d3885ac543d877f0e3d.tar.gz
prosody-692e6d1221927c370fae7d3885ac543d877f0e3d.zip
mod_auth_internal_plain: Log a debug message when changing password to be consistent with the other methods
Diffstat (limited to 'plugins/mod_auth_internal_plain.lua')
-rw-r--r--plugins/mod_auth_internal_plain.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua
index b2c8cb2b..2e231065 100644
--- a/plugins/mod_auth_internal_plain.lua
+++ b/plugins/mod_auth_internal_plain.lua
@@ -35,6 +35,7 @@ function provider.get_password(username)
end
function provider.set_password(username, password)
+ log("debug", "set_password for username '%s'", username);
local account = accounts:get(username);
if account then
account.password = password;