aboutsummaryrefslogtreecommitdiff
path: root/src
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 /src
parentMerge pull request #2311 from nosnilmot/validate-listen-opts (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.
Diffstat (limited to 'src')
-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).