Improve logging around APNG animation disabling.

This commit is contained in:
Greyson Parrelli
2024-03-18 09:00:15 -04:00
committed by Cody Henthorne
parent 7a69df42a7
commit 450dc2f368
2 changed files with 23 additions and 8 deletions

View File

@@ -91,6 +91,7 @@ public class LogSectionSystemInfo implements LogSection {
builder.append("User-Agent : ").append(StandardUserAgentInterceptor.USER_AGENT).append("\n");
builder.append("SlowNotifications : ").append(SlowNotificationHeuristics.isHavingDelayedNotifications()).append("\n");
builder.append("PotentiallyBattery: ").append(SlowNotificationHeuristics.isPotentiallyCausedByBatteryOptimizations()).append("\n");
builder.append("APNG Animation : ").append(DeviceProperties.shouldAllowApngStickerAnimation(context)).append("\n");
if (BuildConfig.MANAGES_APP_UPDATES) {
builder.append("ApkManifestUrl : ").append(BuildConfig.APK_UPDATE_MANIFEST_URL).append("\n");
}