Log insufficient storage space

This commit is contained in:
M66B 2022-01-26 16:49:51 +01:00
parent 2e892022ca
commit c5dfc0b670
1 changed files with 11 additions and 1 deletions

View File

@ -119,9 +119,19 @@ public class EntityLog {
// Check available storage space
if (!ok || (++count % LOG_DELETE_BATCH_SIZE) == 0) {
long cake = Helper.getAvailableStorageSpace();
boolean wasOk = ok;
ok = (cake < Helper.MIN_REQUIRED_SPACE);
if (!ok)
return;
if (wasOk) {
entry.type = Type.General;
entry.account = null;
entry.folder = null;
entry.message = null;
entry.data = "Insufficient storage space=" +
Helper.humanReadableByteCount(cake) + "/" +
Helper.humanReadableByteCount(Helper.MIN_REQUIRED_SPACE);
} else
return;
}
try {