mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 17:27:00 +00:00
Improved operation debugging
This commit is contained in:
parent
f4affa757d
commit
06ff730375
1 changed files with 7 additions and 3 deletions
|
@ -1535,7 +1535,6 @@ public class Log {
|
|||
db.attachment().setDownloaded(attachment.id, size);
|
||||
}
|
||||
|
||||
|
||||
private static void attachLog(Context context, long id, int sequence) throws IOException {
|
||||
DB db = DB.getInstance(context);
|
||||
|
||||
|
@ -1580,15 +1579,20 @@ public class Log {
|
|||
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(file))) {
|
||||
DateFormat TF = Helper.getTimeInstance(context);
|
||||
|
||||
for (EntityOperation op : db.operation().getOperations())
|
||||
size += write(os, String.format("%s %d %s/%d %s %s %s\r\n",
|
||||
for (EntityOperation op : db.operation().getOperations()) {
|
||||
EntityAccount account = (op.account == null ? null : db.account().getAccount(op.account));
|
||||
EntityFolder folder = (op.folder == null ? null : db.folder().getFolder(op.folder));
|
||||
size += write(os, String.format("%s %s/%s %d %s/%d %s %s %s\r\n",
|
||||
TF.format(op.created),
|
||||
account == null ? null : account.name,
|
||||
folder == null ? null : folder.name,
|
||||
op.message == null ? -1 : op.message,
|
||||
op.name,
|
||||
op.tries,
|
||||
op.args,
|
||||
op.state,
|
||||
op.error));
|
||||
}
|
||||
}
|
||||
|
||||
db.attachment().setDownloaded(attachment.id, size);
|
||||
|
|
Loading…
Reference in a new issue