diff options
author | Kim Alvefur <zash@zash.se> | 2013-08-10 20:09:33 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-08-10 20:09:33 +0200 |
commit | 692e6d1221927c370fae7d3885ac543d877f0e3d (patch) | |
tree | ee56a4ffae681408c9b08a927c90d35ca910de68 /plugins | |
parent | 5dc7169a08a3261e176b60844a6024994cb4d06a (diff) | |
download | prosody-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')
-rw-r--r-- | plugins/mod_auth_internal_plain.lua | 1 |
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; |