|
|
@ -1015,12 +1015,13 @@ public class Log {
|
|
|
|
DateFormat TF = Helper.getTimeInstance(context);
|
|
|
|
DateFormat TF = Helper.getTimeInstance(context);
|
|
|
|
|
|
|
|
|
|
|
|
for (EntityOperation op : db.operation().getOperations())
|
|
|
|
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),
|
|
|
|
TF.format(op.created),
|
|
|
|
op.message == null ? -1 : op.message,
|
|
|
|
op.message == null ? -1 : op.message,
|
|
|
|
op.name,
|
|
|
|
op.name,
|
|
|
|
op.tries,
|
|
|
|
op.tries,
|
|
|
|
op.args,
|
|
|
|
op.args,
|
|
|
|
|
|
|
|
op.state,
|
|
|
|
op.error));
|
|
|
|
op.error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|