diff options
| author | 2018-05-02 18:07:55 +0000 | |
|---|---|---|
| committer | 2018-05-02 18:07:55 +0000 | |
| commit | 6df3046722447f2f66a57f35c6c45b3961adf006 (patch) | |
| tree | f6477c0d8e4914817e9002849c97e4b4a63367a3 /libs | |
| parent | af0c783042eb89b58abb28bda87e4dd298af725f (diff) | |
| parent | e7cf62ab152d273849b7d80fe4dd709d00e5f9da (diff) | |
Merge "Fix BufferHubProducer log spam" into pi-dev
Diffstat (limited to 'libs')
| -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. |