aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
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
commit94ee98dc29edeb54a7557cdc1575748c1e409fd3 (patch)
treeee56a4ffae681408c9b08a927c90d35ca910de68 /plugins
parent00b458408e2b2a1aab6922405be463b53994053c (diff)
downloadprosody-94ee98dc29edeb54a7557cdc1575748c1e409fd3.tar.gz
prosody-94ee98dc29edeb54a7557cdc1575748c1e409fd3.zip
mod_auth_internal_plain: Log a debug message when changing password to be consistent with the other methods
Diffstat (limited to 'plugins')
-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;