Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2018-02-28 21:43:43 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2018-02-28 21:43:43 +0300
commit76f827ac838012800eae54cb7fd958f912a1af14 (patch)
treef6e83148b018ca31cb5e09361716a15b577f1128
parentb5138a8ddb68dbfa529f753bd4010f80e8e2a2ca (diff)
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.
-rw-r--r--src/cyrsasl_digest.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cyrsasl_digest.erl b/src/cyrsasl_digest.erl
index 68fa82ea5..08edf3020 100644
--- a/src/cyrsasl_digest.erl
+++ b/src/cyrsasl_digest.erl
@@ -59,8 +59,8 @@
start(_Opts) ->
Fqdn = get_local_fqdn(),
- ?INFO_MSG("FQDN used to check DIGEST-MD5 SASL authentication: ~s",
- [Fqdn]),
+ ?DEBUG("FQDN used to check DIGEST-MD5 SASL authentication: ~s",
+ [Fqdn]),
cyrsasl:register_mechanism(<<"DIGEST-MD5">>, ?MODULE,
digest).