diff options
| author | 2018-04-30 22:56:08 -0700 | |
|---|---|---|
| committer | 2018-05-01 00:16:54 -0700 | |
| commit | e7cf62ab152d273849b7d80fe4dd709d00e5f9da (patch) | |
| tree | 68ffb2a0fdb6d2df275430e2fa6e1ef0f83786ae | |
| parent | 79ab72151d9622a2b92c55767a6e652de14c4c87 (diff) | |
Fix BufferHubProducer log spam
Bug: 70046255
Bug: 78919825
Test: libgui-test
Change-Id: I5e20846f7a384d016df477f578fd203a89d45d05
| -rw-r--r-- | libs/gui/BufferHubProducer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gui/BufferHubProducer.cpp b/libs/gui/BufferHubProducer.cpp index 061710a1b4..ae5cca2d20 100644 --- a/libs/gui/BufferHubProducer.cpp +++ b/libs/gui/BufferHubProducer.cpp @@ -136,7 +136,7 @@ status_t BufferHubProducer::dequeueBuffer(int* out_slot, sp<Fence>* out_fence, u uint32_t height, PixelFormat format, uint64_t usage, uint64_t* /*outBufferAge*/, FrameEventHistoryDelta* /* out_timestamps */) { - ALOGW("dequeueBuffer: w=%u, h=%u, format=%d, usage=%" PRIu64, width, height, format, usage); + ALOGV("dequeueBuffer: w=%u, h=%u, format=%d, usage=%" PRIu64, width, height, format, usage); status_t ret; std::unique_lock<std::mutex> lock(mutex_); @@ -208,7 +208,7 @@ status_t BufferHubProducer::dequeueBuffer(int* out_slot, sp<Fence>* out_fence, u buffers_[slot].mBufferState.freeQueued(); buffers_[slot].mBufferState.dequeue(); - ALOGW("dequeueBuffer: slot=%zu", slot); + ALOGV("dequeueBuffer: slot=%zu", slot); // TODO(jwcai) Handle fence properly. |BufferHub| has full fence support, we // just need to exopose that through |BufferHubQueue| once we need fence. |