Added log types

This commit is contained in:
M66B
2021-08-15 20:32:34 +02:00
parent f6ab6ced81
commit b8bddfedbf
8 changed files with 2695 additions and 116 deletions

View File

@@ -2099,7 +2099,7 @@ public class Log {
long from = new Date().getTime() - 24 * 3600 * 1000L;
DateFormat TF = Helper.getTimeInstance(context);
for (EntityLog entry : db.log().getLogs(from))
for (EntityLog entry : db.log().getLogs(from, null))
size += write(os, String.format("%s %s\r\n", TF.format(entry.time), entry.data));
}