Keep less logging

This commit is contained in:
M66B 2021-12-02 09:12:18 +01:00
parent 47d1e19394
commit 99217fa948
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class EntityLog {
private static Long last_cleanup = null;
private static final long LOG_CLEANUP_INTERVAL = 3600 * 1000L; // milliseconds
private static final long LOG_KEEP_DURATION = 12 * 3600 * 1000L; // milliseconds
private static final long LOG_KEEP_DURATION = 6 * 3600 * 1000L; // milliseconds
private static final int LOG_DELETE_BATCH_SIZE = 50;
@PrimaryKey(autoGenerate = true)