Additional session create log statement

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1599 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-01-06 09:36:28 +00:00
parent 6cad2e318e
commit 068c782346
2 changed files with 2 additions and 2 deletions

View File

@ -510,7 +510,7 @@ public class DavExchangeSession extends ExchangeSession {
if (mailPath == null || email == null) {
throw new DavMailAuthenticationException("EXCEPTION_AUTHENTICATION_FAILED_PASSWORD_EXPIRED");
}
LOGGER.debug("Current user email is " + email + ", alias is " + alias + ", mailPath is " + mailPath);
LOGGER.debug("Current user email is " + email + ", alias is " + alias + ", mailPath is " + mailPath + " on "+ serverVersion);
rootPath = mailPath.substring(0, mailPath.lastIndexOf('/', mailPath.length() - 2) + 1);
}

View File

@ -205,7 +205,7 @@ public class EwsExchangeSession extends ExchangeSession {
LOGGER.error(e.getMessage(), e);
throw new DavMailAuthenticationException("EXCEPTION_EWS_NOT_AVAILABLE");
}
LOGGER.debug("Current user email is " + email + ", alias is " + alias + " on "+ serverVersion);
}
protected static class AutoDiscoverMethod extends PostMethod {