summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Catherine Vlasov <cvlasov@google.com> 2025-01-16 02:01:39 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-01-16 02:01:39 -0800
commit272d18f71c63794ebe889a9a8812fcd8e2ebcdbc (patch)
tree367ad7d50fd70588ff1e1b20986990094599e9be
parent8405bd14998ba5a456239659687c869a522b1b24 (diff)
parent03a926cd9ca232585757e921ec96c65db84ed386 (diff)
Merge "Log the atom tag when pulling a Keystore atom fails." into main
-rw-r--r--services/core/java/com/android/server/stats/pull/StatsPullAtomService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java b/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
index b35a0a772ff2..4b55f276026f 100644
--- a/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
+++ b/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
@@ -4853,7 +4853,7 @@ public class StatsPullAtomService extends SystemService {
Slog.e(TAG, "Disconnected from keystore service. Cannot pull.", e);
return StatsManager.PULL_SKIP;
} catch (ServiceSpecificException e) {
- Slog.e(TAG, "pulling keystore metrics failed", e);
+ Slog.e(TAG, "Pulling keystore atom with tag " + atomTag + " failed", e);
return StatsManager.PULL_SKIP;
} finally {
Binder.restoreCallingIdentity(callingToken);