Improved logging

pull/178/head
M66B 5 years ago
parent 08970346ea
commit 45d81dbf7d

@ -437,7 +437,10 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
return state.ifolder.search(term); return state.ifolder.search(term);
} }
} catch (MessagingException ex) { } catch (MessagingException ex) {
throw new ProtocolException("Search", ex); ProtocolException pex = new ProtocolException(
"Search " + account.host + " " + criteria, ex);
Log.e(pex);
throw pex;
} }
} }
}); });

Loading…
Cancel
Save