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
This commit is contained in:
Varun Shah
2019-10-22 22:21:28 -07:00
parent 26d4e011de
commit 690d7798a0

View File

@@ -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);
}