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 | afebf2da34488b615692a35a66ae2b9a8584adbe (patch) | |
tree | 71058b6a04dae6b8ea4205eebf0d30bd9d20b501 /plugins/mod_auth_internal_plain.lua | |
parent | eca225365d45123176a348c70f788c4719b43ee1 (diff) | |
download | prosody-afebf2da34488b615692a35a66ae2b9a8584adbe.tar.gz prosody-afebf2da34488b615692a35a66ae2b9a8584adbe.zip |
mod_auth_internal_{plain,hashed}: Clarify log messages on initialization
Diffstat (limited to 'plugins/mod_auth_internal_plain.lua')
-rw-r--r-- | plugins/mod_auth_internal_plain.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua index 784553ea..93b50351 100644 --- a/plugins/mod_auth_internal_plain.lua +++ b/plugins/mod_auth_internal_plain.lua @@ -23,7 +23,7 @@ local prosody = _G.prosody; function new_default_provider(host) local provider = { name = "internal_plain" }; - log("debug", "initializing default authentication provider for host '%s'", host); + log("debug", "initializing internal_plain authentication provider for host '%s'", host); function provider.test_password(username, password) log("debug", "test password '%s' for user %s at host %s", password, username, module.host); |