summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Patrick Williams <pdwilliams@google.com> 2025-03-13 14:54:41 -0500
committer Patrick Williams <pdwilliams@google.com> 2025-03-13 14:54:41 -0500
commitb2d22099fef8e3b10bd9f3c2666d7b7a7bfa10e9 (patch)
tree15c55dad894c3fc5b2cf7c0c282aa649b696096e
parent269580ec3dcd89ed86b4bacfb7871cc2bcb0afbb (diff)
Remove old WindowInfosListener debug logging
Bug: 402990967 Flag: EXEMPT refactor Test: presubmits Change-Id: I0676f0a39e895acac572c5c9de0417b12db22547
-rw-r--r--services/inputflinger/dispatcher/InputDispatcher.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/services/inputflinger/dispatcher/InputDispatcher.cpp b/services/inputflinger/dispatcher/InputDispatcher.cpp
index ef50fc0036..2f52086a78 100644
--- a/services/inputflinger/dispatcher/InputDispatcher.cpp
+++ b/services/inputflinger/dispatcher/InputDispatcher.cpp
@@ -7044,11 +7044,6 @@ void InputDispatcher::onWindowInfosChanged(const gui::WindowInfosUpdate& update)
setInputWindowsLocked(handles, displayId);
}
- if (update.vsyncId < mWindowInfosVsyncId) {
- ALOGE("Received out of order window infos update. Last update vsync id: %" PRId64
- ", current update vsync id: %" PRId64,
- mWindowInfosVsyncId, update.vsyncId);
- }
mWindowInfosVsyncId = update.vsyncId;
}
// Wake up poll loop since it may need to make new input dispatching choices.