Mercurial > prosody-hg
diff plugins/mod_auth_internal_plain.lua @ 5780:bc3bf4ded7e4
mod_auth_internal_plain: Log a debug message when changing password to be consistent with the other methods
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 10 Aug 2013 20:09:33 +0200 |
| parents | 70bb0df1ffe7 |
| children | b374eb414a32 |
line wrap: on
line diff
--- a/plugins/mod_auth_internal_plain.lua Sat Aug 10 20:06:51 2013 +0200 +++ b/plugins/mod_auth_internal_plain.lua Sat Aug 10 20:09:33 2013 +0200 @@ -35,6 +35,7 @@ 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;
