]> granicus.if.org Git - ejabberd/commitdiff
Increase log level for DIGEST-MD5 FQDN
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>
Wed, 28 Feb 2018 18:43:43 +0000 (21:43 +0300)
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>
Wed, 28 Feb 2018 18:43:43 +0000 (21:43 +0300)
SASL DIGEST-MD5 anyway deprecated anyway, so not point in
logging this. This is now logged in `debug` mode.

src/cyrsasl_digest.erl

index 68fa82ea5bfc309982d7a7c7d8c7b407d2fc90c6..08edf302033430b84d05881d901760177bc0b3c8 100644 (file)
@@ -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).