1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-04 14:52:24 -05:00

Avoid null in log statement

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2228 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2014-02-03 21:43:23 +00:00
parent 892f277b97
commit e9591b72c9

View File

@ -553,7 +553,7 @@ public class EwsExchangeSession extends ExchangeSession {
@Override
public void deleteMessage(ExchangeSession.Message message) throws IOException {
LOGGER.debug("Delete " + message.permanentUrl);
LOGGER.debug("Delete " + message.imapUid);
DeleteItemMethod deleteItemMethod = new DeleteItemMethod(((EwsExchangeSession.Message) message).itemId, DeleteType.HardDelete, SendMeetingCancellations.SendToNone);
executeMethod(deleteItemMethod);
}