diff options
| author | 2018-02-16 15:54:05 -0800 | |
|---|---|---|
| committer | 2018-02-16 15:54:05 -0800 | |
| commit | 111ed73a9c9971ac20e8fd8eaebb56a38f341664 (patch) | |
| tree | 19ec61459b663e0f9633af76006f976cea8d5793 | |
| parent | 385ccb10b29656e8cfdab261236f6101af53ac68 (diff) | |
StatsCompanionService logcat message updates
StatsCompanionService logs that it cannot find statsd, but
since it never says when it succeeds, it looks worrisome.
It's useful to know, so both outcomes are now logged.
Other minor logging changes are done too.
Bug: 73495509
Test: none
Change-Id: I67236b8d323751d0c5e3fa2454eccceb8c4250a0
| -rw-r--r-- | services/core/java/com/android/server/stats/StatsCompanionService.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/services/core/java/com/android/server/stats/StatsCompanionService.java b/services/core/java/com/android/server/stats/StatsCompanionService.java index fa7e53594781..eca98e271b88 100644 --- a/services/core/java/com/android/server/stats/StatsCompanionService.java +++ b/services/core/java/com/android/server/stats/StatsCompanionService.java @@ -128,7 +128,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { synchronized (sStatsdLock) { sStatsd = fetchStatsdService(); if (sStatsd == null) { - Slog.w(TAG, "Could not access statsd"); + Slog.w(TAG, "Could not access statsd for UserUpdateReceiver"); return; } try { @@ -143,7 +143,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { } }; mShutdownEventReceiver = new ShutdownEventReceiver(); - Slog.w(TAG, "Registered receiver for ACTION_PACKAGE_REPLACE AND ADDED."); + if (DEBUG) Slog.d(TAG, "Registered receiver for ACTION_PACKAGE_REPLACED and ADDED."); PowerProfile powerProfile = new PowerProfile(context); final int numClusters = powerProfile.getNumCpuClusters(); mKernelCpuSpeedReaders = new KernelCpuSpeedReader[numClusters]; @@ -216,7 +216,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { PackageManager pm = context.getPackageManager(); final List<UserInfo> users = um.getUsers(true); if (DEBUG) { - Slog.w(TAG, "Iterating over " + users.size() + " profiles."); + Slog.d(TAG, "Iterating over " + users.size() + " profiles."); } List<Integer> uids = new ArrayList(); @@ -237,7 +237,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { sStatsd.informAllUidData(toIntArray(uids), toLongArray(versions), apps.toArray(new String[apps.size()])); if (DEBUG) { - Slog.w(TAG, "Sent data for " + uids.size() + " apps"); + Slog.d(TAG, "Sent data for " + uids.size() + " apps"); } } @@ -868,7 +868,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { } sStatsd = fetchStatsdService(); if (sStatsd == null) { - Slog.w(TAG, "Could not access statsd"); + Slog.i(TAG, "Could not yet find statsd to tell it that StatsCompanion is alive."); return; } if (DEBUG) Slog.d(TAG, "Saying hi to statsd"); @@ -908,6 +908,7 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { } finally { restoreCallingIdentity(token); } + Slog.i(TAG, "Told statsd that StatsCompanionService is alive."); } catch (RemoteException e) { Slog.e(TAG, "Failed to inform statsd that statscompanion is ready", e); forgetEverything(); |