diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-03-11 20:56:09 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-03-11 20:56:09 +0000 |
commit | a4a4365842fd701623fa72d38e9ea8068e0674ce (patch) | |
tree | 71058b6a04dae6b8ea4205eebf0d30bd9d20b501 /plugins/mod_auth_internal_hashed.lua | |
parent | 818b91cdf5aea37839a40170551410a743d298b8 (diff) | |
download | prosody-a4a4365842fd701623fa72d38e9ea8068e0674ce.tar.gz prosody-a4a4365842fd701623fa72d38e9ea8068e0674ce.zip |
mod_auth_internal_{plain,hashed}: Clarify log messages on initialization
Diffstat (limited to 'plugins/mod_auth_internal_hashed.lua')
-rw-r--r-- | plugins/mod_auth_internal_hashed.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_auth_internal_hashed.lua b/plugins/mod_auth_internal_hashed.lua index ee810426..399044ad 100644 --- a/plugins/mod_auth_internal_hashed.lua +++ b/plugins/mod_auth_internal_hashed.lua @@ -54,7 +54,7 @@ local iteration_count = 4096; function new_hashpass_provider(host) local provider = { name = "internal_hashed" }; - log("debug", "initializing hashpass authentication provider for host '%s'", host); + log("debug", "initializing internal_hashed authentication provider for host '%s'", host); function provider.test_password(username, password) local credentials = datamanager.load(username, host, "accounts") or {}; |