Software /
code /
prosody
Changeset
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 | 5779:70bb0df1ffe7 |
children | 5781:b374eb414a32 |
files | plugins/mod_auth_internal_plain.lua |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
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;