mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Added large memory class to debug info
This commit is contained in:
parent
bf6441040f
commit
33bf78d286
1 changed files with 2 additions and 2 deletions
|
@ -1425,8 +1425,8 @@ public class Log {
|
|||
ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
|
||||
ActivityManager.MemoryInfo mi = new ActivityManager.MemoryInfo();
|
||||
am.getMemoryInfo(mi);
|
||||
sb.append(String.format("Memory class: %d MB/%s\r\n",
|
||||
am.getMemoryClass(), Helper.humanReadableByteCount(mi.totalMem)));
|
||||
sb.append(String.format("Memory class: %d/%d MB/%s\r\n",
|
||||
am.getMemoryClass(), am.getLargeMemoryClass(), Helper.humanReadableByteCount(mi.totalMem)));
|
||||
|
||||
sb.append(String.format("Storage space: %s/%s App: %s\r\n",
|
||||
Helper.humanReadableByteCount(Helper.getAvailableStorageSpace()),
|
||||
|
|
Loading…
Reference in a new issue