mod_auth_internal_plain: Log a debug message when changing password to be consistent...
authorKim Alvefur <zash@zash.se>
Sat, 10 Aug 2013 18:09:33 +0000 (20:09 +0200)
committerKim Alvefur <zash@zash.se>
Sat, 10 Aug 2013 18:09:33 +0000 (20:09 +0200)
plugins/mod_auth_internal_plain.lua

index b2c8cb2b045722a9ff49ac51eb0775b1f008a6df..2e231065883070ecc2227dce08e490549a3eace9 100644 (file)
@@ -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;