From 352afd168f3d52bd5266dd8a431a7d3942694ab7 Mon Sep 17 00:00:00 2001 From: Neil Fuller Date: Tue, 4 Dec 2018 21:17:29 +0000 Subject: [PATCH] Track debug key changes in libcore/ Add ".source" to the debug key for the time zone update via APK data: i.e. core_library.timezone>.source<.data_status Bug: 118242715 Test: adb shell dumpsys runtime Change-Id: I0f19faeef08ed19fe5482727280a17b49d8f923b --- services/core/java/com/android/server/RuntimeService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/RuntimeService.java b/services/core/java/com/android/server/RuntimeService.java index ccfac80d22a78..bb39ccc52af22 100644 --- a/services/core/java/com/android/server/RuntimeService.java +++ b/services/core/java/com/android/server/RuntimeService.java @@ -94,7 +94,7 @@ public class RuntimeService extends Binder { // Add /data tz data set using the DistroVersion class (which libcore cannot use). // This update mechanism will be removed after the time zone APEX is launched so this // untidiness will disappear with it. - String debugKeyPrefix = "core_library.timezone.data_"; + String debugKeyPrefix = "core_library.timezone.source.data_"; String versionFileName = TimeZoneDataFiles.getDataTimeZoneFile( TimeZoneDistro.DISTRO_VERSION_FILE_NAME); addDistroVersionDebugInfo(versionFileName, debugKeyPrefix, coreLibraryDebugInfo);