| commit | 03a926cd9ca232585757e921ec96c65db84ed386 | [log] [tgz] |
|---|---|---|
| author | Catherine Vlasov <cvlasov@google.com> | Wed Jan 15 10:21:12 2025 +0000 |
| committer | Catherine Vlasov <cvlasov@google.com> | Wed Jan 15 10:23:14 2025 +0000 |
| tree | 14721c5679a3b7890b92c4f8a69a0d654e6e2140 | |
| parent | 4109b47910ce9c361cc8cc0195963696c0eaf2e7 [diff] |
Log the atom tag when pulling a Keystore atom fails. Bug: 385175793 Test: m Change-Id: Ia6d464581b1686d62d42c20e244c1480ca814791
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 b35a0a7..4b55f27 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 @@ 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);