# HG changeset patch # User Kim Alvefur # Date 1376158173 -7200 # Node ID bc3bf4ded7e423fb09b470587a01f7f6971ff0b4 # Parent 70bb0df1ffe79700504c2398c8823965b86f2e2a mod_auth_internal_plain: Log a debug message when changing password to be consistent with the other methods diff -r 70bb0df1ffe7 -r bc3bf4ded7e4 plugins/mod_auth_internal_plain.lua --- 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;