mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 03:02:22 -05:00
EWS: improve resolveNames logging
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1515 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
51c2d3b1a0
commit
f641982096
@ -1656,12 +1656,12 @@ public class EwsExchangeSession extends ExchangeSession {
|
||||
if (operator == Operator.IsEqualTo) {
|
||||
searchValue = '=' + searchValue;
|
||||
}
|
||||
if (LOGGER.isDebugEnabled()) {
|
||||
LOGGER.debug("ResolveNames(" + searchValue + ')');
|
||||
}
|
||||
ResolveNamesMethod resolveNamesMethod = new ResolveNamesMethod(searchValue);
|
||||
executeMethod(resolveNamesMethod);
|
||||
List<EWSMethod.Item> responses = resolveNamesMethod.getResponseItems();
|
||||
if (LOGGER.isDebugEnabled()) {
|
||||
LOGGER.debug("ResolveNames(" + searchValue + ") returned "+responses.size()+" results");
|
||||
}
|
||||
for (EWSMethod.Item response : responses) {
|
||||
Contact contact = buildGalfindContact(response);
|
||||
if (condition.isMatch(contact)) {
|
||||
|
Loading…
Reference in New Issue
Block a user