mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 13:48:58 +00:00
Improved logging
This commit is contained in:
parent
08970346ea
commit
45d81dbf7d
1 changed files with 4 additions and 1 deletions
|
@ -437,7 +437,10 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
|
|||
return state.ifolder.search(term);
|
||||
}
|
||||
} catch (MessagingException ex) {
|
||||
throw new ProtocolException("Search", ex);
|
||||
ProtocolException pex = new ProtocolException(
|
||||
"Search " + account.host + " " + criteria, ex);
|
||||
Log.e(pex);
|
||||
throw pex;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue