Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb3a3541 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove spammy log" into main

parents ae10c906 76bd54e0
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -3849,9 +3849,10 @@ public final class DisplayManagerService extends SystemService {
            // Ignore redundant events. Further optimization is possible by merging adjacent events.
            Pair<Integer, Integer> last = mDisplayEvents.get(mDisplayEvents.size() - 1);
            if (last.first == displayId && last.second == event) {
                Slog.d(TAG,
                        "Ignore redundant display event " + displayId + "/" + event + " to "
                if (DEBUG) {
                    Slog.d(TAG, "Ignore redundant display event " + displayId + "/" + event + " to "
                            + mCallbackRecord.mUid + "/" + mCallbackRecord.mPid);
                }
                return;
            }