diff options
| author | 2023-05-19 12:02:44 -0400 | |
|---|---|---|
| committer | 2023-11-13 11:14:08 -0500 | |
| commit | 9eb43e9fe10961c9adedb4b9a16960e08d871292 (patch) | |
| tree | 32eb90c9be07eff54468ac7105ab50ebb95d9ecb | |
| parent | 0b6d2dc51c62d0697e943eb74f46ca27830fdf01 (diff) | |
SF: Remove ALOGV spam
Stop logging "postComposition" for each composite, and "Skipping [...]
transform hint" for each layer whenever the display is powered on/off.
Bug: 255635711
Test: logcat
Change-Id: I6c4b1abebf489226ee873dd10cad17dc981ec0be
| -rw-r--r-- | services/surfaceflinger/SurfaceFlinger.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp index 9c8555eb62..437e27ea19 100644 --- a/services/surfaceflinger/SurfaceFlinger.cpp +++ b/services/surfaceflinger/SurfaceFlinger.cpp @@ -2922,7 +2922,6 @@ void SurfaceFlinger::onCompositionPresented(PhysicalDisplayId pacesetterId, const scheduler::FrameTargeters& frameTargeters, nsecs_t presentStartTime) { ATRACE_CALL(); - ALOGV(__func__); ui::PhysicalDisplayMap<PhysicalDisplayId, std::shared_ptr<FenceTime>> presentFences; ui::PhysicalDisplayMap<PhysicalDisplayId, const sp<Fence>> gpuCompositionDoneFences; @@ -3810,7 +3809,6 @@ void SurfaceFlinger::commitTransactionsLocked(uint32_t transactionFlags) { // first frame before the display is available, we rely // on WMS and DMS to provide the right information // so the client can calculate the hint. - ALOGV("Skipping reporting transform hint update for %s", layer->getDebugName()); layer->skipReportingTransformHint(); } else { layer->updateTransformHint(hintDisplay->getTransformHint()); |