24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02:00

Increase log level for DIGEST-MD5 FQDN

SASL DIGEST-MD5 anyway deprecated anyway, so not point in
logging this. This is now logged in `debug` mode.
This commit is contained in:
Evgeniy Khramtsov 2018-02-28 21:43:43 +03:00
parent b5138a8ddb
commit 76f827ac83

View File

@ -59,8 +59,8 @@
start(_Opts) -> start(_Opts) ->
Fqdn = get_local_fqdn(), Fqdn = get_local_fqdn(),
?INFO_MSG("FQDN used to check DIGEST-MD5 SASL authentication: ~s", ?DEBUG("FQDN used to check DIGEST-MD5 SASL authentication: ~s",
[Fqdn]), [Fqdn]),
cyrsasl:register_mechanism(<<"DIGEST-MD5">>, ?MODULE, cyrsasl:register_mechanism(<<"DIGEST-MD5">>, ?MODULE,
digest). digest).