Log operation state

This commit is contained in:
M66B
2020-02-11 17:47:41 +01:00
parent 8bb5f2f902
commit af4bf5fad6

View File

@@ -1015,12 +1015,13 @@ public class Log {
DateFormat TF = Helper.getTimeInstance(context);
for (EntityOperation op : db.operation().getOperations())
size += write(os, String.format("%s %d %s/%d %s %s\r\n",
size += write(os, String.format("%s %d %s/%d %s %s %s\r\n",
TF.format(op.created),
op.message == null ? -1 : op.message,
op.name,
op.tries,
op.args,
op.state,
op.error));
}