From 690d7798a0507fdb8a23a9ce10e7d98dd291e97b Mon Sep 17 00:00:00 2001 From: Varun Shah Date: Tue, 22 Oct 2019 22:21:28 -0700 Subject: [PATCH] Remove logs related to UsageStats string cache. Since UsageStatsProto is not being used anymore other than for backup/restore, there is no string cache (string pool) maintained in memory. Because of this, there are a bunch of warnings being logged every time usage stats data is backed up. Remove these logs since they are simply noise now. Bug: 143184490 Test: atest UsageStatsDatabase (no warnings seen during backup test) Change-Id: Ibb0a053e51124087f44231f5fddf3d41f7e345d2 --- .../android/server/usage/UsageStatsProto.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/services/usage/java/com/android/server/usage/UsageStatsProto.java b/services/usage/java/com/android/server/usage/UsageStatsProto.java index 5d1f730694ef2..87e077e3df1fa 100644 --- a/services/usage/java/com/android/server/usage/UsageStatsProto.java +++ b/services/usage/java/com/android/server/usage/UsageStatsProto.java @@ -334,8 +334,6 @@ final class UsageStatsProto { proto.write(IntervalStatsProto.UsageStats.PACKAGE_INDEX, packageIndex + 1); } else { // Package not in Stringpool for some reason, write full string instead - Slog.w(TAG, "UsageStats package name (" + usageStats.mPackageName - + ") not found in IntervalStats string cache"); proto.write(IntervalStatsProto.UsageStats.PACKAGE, usageStats.mPackageName); } // Time attributes stored as an offset of the beginTime. @@ -430,8 +428,6 @@ final class UsageStatsProto { proto.write(IntervalStatsProto.Event.PACKAGE_INDEX, packageIndex + 1); } else { // Package not in Stringpool for some reason, write full string instead - Slog.w(TAG, "Usage event package name (" + event.mPackage - + ") not found in IntervalStats string cache"); proto.write(IntervalStatsProto.Event.PACKAGE, event.mPackage); } if (event.mClass != null) { @@ -440,8 +436,6 @@ final class UsageStatsProto { proto.write(IntervalStatsProto.Event.CLASS_INDEX, classIndex + 1); } else { // Class not in Stringpool for some reason, write full string instead - Slog.w(TAG, "Usage event class name (" + event.mClass - + ") not found in IntervalStats string cache"); proto.write(IntervalStatsProto.Event.CLASS, event.mClass); } } @@ -454,10 +448,6 @@ final class UsageStatsProto { if (taskRootPackageIndex >= 0) { proto.write(IntervalStatsProto.Event.TASK_ROOT_PACKAGE_INDEX, taskRootPackageIndex + 1); - } else { - // Task root package not in Stringpool for some reason. - Slog.w(TAG, "Usage event task root package name (" + event.mTaskRootPackage - + ") not found in IntervalStats string cache"); } } if (event.mTaskRootClass != null) { @@ -465,10 +455,6 @@ final class UsageStatsProto { if (taskRootClassIndex >= 0) { proto.write(IntervalStatsProto.Event.TASK_ROOT_CLASS_INDEX, taskRootClassIndex + 1); - } else { - // Task root class not in Stringpool for some reason. - Slog.w(TAG, "Usage event task root class name (" + event.mTaskRootClass - + ") not found in IntervalStats string cache"); } } switch (event.mEventType) { @@ -496,9 +482,6 @@ final class UsageStatsProto { channelIndex + 1); } else { // Channel not in Stringpool for some reason, write full string instead - Slog.w(TAG, "Usage event notification channel name (" - + event.mNotificationChannelId - + ") not found in IntervalStats string cache"); proto.write(IntervalStatsProto.Event.NOTIFICATION_CHANNEL, event.mNotificationChannelId); }