summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yixiao Luo <yixiaoluo@google.com> 2023-08-24 18:53:46 -0700
committer Yixiao Luo <yixiaoluo@google.com> 2023-08-24 18:53:46 -0700
commit6522d4e772985edaec4a5462c18a3490028da77a (patch)
tree5fd878593bbd53b7759646f4e5908b04ab42499f
parent7736778ee92c13c15964c6928efd3913335fba62 (diff)
External TV Input Logging: fix parameter order
Bug: 279185950 Test: m Change-Id: I83e49b1da852b60ddeb71aff9c21974dec22cdc6
-rw-r--r--services/core/java/com/android/server/tv/TvInputManagerService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/tv/TvInputManagerService.java b/services/core/java/com/android/server/tv/TvInputManagerService.java
index 7ea9870b41c5..6a2b824201cc 100644
--- a/services/core/java/com/android/server/tv/TvInputManagerService.java
+++ b/services/core/java/com/android/server/tv/TvInputManagerService.java
@@ -3079,7 +3079,7 @@ public final class TvInputManagerService extends SystemService {
}
FrameworkStatsLog.write(FrameworkStatsLog.EXTERNAL_TV_INPUT_EVENT, eventType, inputState,
- inputType, displayName, vendorId, hdmiPort, tifSessionId);
+ inputType, vendorId, hdmiPort, tifSessionId, displayName);
}
private static final class UserState {