1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-02 13:14:39 +00:00

Improved debug info

This commit is contained in:
M66B 2022-01-31 13:44:42 +01:00
parent 9fe7b15adc
commit 38f053a098

View file

@ -1944,8 +1944,9 @@ public class Log {
UsageStatsManager usm = (UsageStatsManager) context.getSystemService(Context.USAGE_STATS_SERVICE); UsageStatsManager usm = (UsageStatsManager) context.getSystemService(Context.USAGE_STATS_SERVICE);
int bucket = usm.getAppStandbyBucket(); int bucket = usm.getAppStandbyBucket();
boolean inactive = usm.isAppInactive(BuildConfig.APPLICATION_ID); boolean inactive = usm.isAppInactive(BuildConfig.APPLICATION_ID);
sb.append(String.format("Standby bucket: %d-%s;p inactive: %b\r\n", sb.append(String.format("Standby bucket: %d-%b-%s %s\r\n",
bucket, Helper.getStandbyBucketName(bucket), inactive)); bucket, inactive, Helper.getStandbyBucketName(bucket),
(bucket == UsageStatsManager.STANDBY_BUCKET_ACTIVE && !inactive ? "" : "!!!")));
} }
boolean canExact = AlarmManagerCompatEx.canScheduleExactAlarms(context); boolean canExact = AlarmManagerCompatEx.canScheduleExactAlarms(context);