Log insufficient storage space

pull/194/merge
M66B 3 years ago
parent 2e892022ca
commit c5dfc0b670

@ -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 {

Loading…
Cancel
Save