From 457ea9962b9a313a0513c0c27e88854170751522 Mon Sep 17 00:00:00 2001 From: Maxime Dor Date: Fri, 4 Aug 2017 15:12:05 +0200 Subject: [PATCH] Fix 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 f484ce7..281fb82 100644 --- a/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy +++ b/src/main/groovy/io/kamax/mxisd/lookup/provider/LdapProvider.groovy @@ -82,7 +82,7 @@ class LdapProvider implements IThreePidProvider { Attribute attribute = entry.get(ldapCfg.getAttribute()) if (attribute == null) { - log.info("DN {}: no attribute {}, skpping", ldapCfg.getAttribute()) + log.info("DN {}: no attribute {}, skpping", entry.getDn(), ldapCfg.getAttribute()) continue }