From c468644fc662a7b4c432908e98063a2b21266fd6 Mon Sep 17 00:00:00 2001 From: Maxime Dor Date: Tue, 27 Jun 2017 00:11:19 +0200 Subject: [PATCH] Clarify log statement --- .../groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy b/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy index a17ecc0..d5ba2c5 100644 --- a/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy +++ b/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy @@ -69,7 +69,7 @@ class LdapProvider implements IThreePidProvider { Optional lookup(LdapConnection conn, String medium, String value) { Optional queryOpt = ldapCfg.getMapping(medium) if (!queryOpt.isPresent()) { - log.warn("{} is not a supported 3PID type for LDAP lookup", medium) + log.warn("{} is not a configured 3PID type for LDAP lookup", medium) return Optional.empty() }