From efeda4694b023a65950c9b27f5374a11f47a5ba6 Mon Sep 17 00:00:00 2001 From: John Stultz Date: Thu, 16 Jun 2016 10:24:43 -0700 Subject: [PATCH] DisplayEventDisplatcher: Quiet down dispatcher Vsync pulse messages My logcat is packed with these dispatcher vsync pulse messages that really don't seem to be describing an error case (though maybe I'm wrong?). So quiet it down a bit and set the loglevel to verbose. Change-Id: Ic4359f64f9cecfc1ffe49275f5f63327ba1b6f1d Signed-off-by: John Stutlz --- libs/androidfw/DisplayEventDispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/androidfw/DisplayEventDispatcher.cpp b/libs/androidfw/DisplayEventDispatcher.cpp index 99cd1732031cd..b8ef9ea49293f 100644 --- a/libs/androidfw/DisplayEventDispatcher.cpp +++ b/libs/androidfw/DisplayEventDispatcher.cpp @@ -103,7 +103,7 @@ int DisplayEventDispatcher::handleEvent(int, int events, void*) { int32_t vsyncDisplayId; uint32_t vsyncCount; if (processPendingEvents(&vsyncTimestamp, &vsyncDisplayId, &vsyncCount)) { - ALOGE("dispatcher %p ~ Vsync pulse: timestamp=%" PRId64 ", id=%d, count=%d", + ALOGV("dispatcher %p ~ Vsync pulse: timestamp=%" PRId64 ", id=%d, count=%d", this, ns2ms(vsyncTimestamp), vsyncDisplayId, vsyncCount); mWaitingForVsync = false; dispatchVsync(vsyncTimestamp, vsyncDisplayId, vsyncCount);