Log remote search exceptions in addition to toasting them.

This commit is contained in:
Andrew Chen 2012-09-22 09:37:50 -07:00
parent d50e07bf55
commit 7631af1572

View file

@ -3518,7 +3518,7 @@ public class ImapStore extends Store {
return folder.search(searcher, null);
} catch (Exception e) {
e.printStackTrace();
Log.e(K9.LOG_TAG, "Exception caught during remote search", e);
throw new MessagingException("Error during search: " + e.toString());
}