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

Commit 76bd54e0 authored by Santos Cordon's avatar Santos Cordon
Browse files

Remove spammy log

Moving a spammy log behind a DEBUG flag. It is very spammy and it is
used very, very infrequently.

Bug: 293257140
Test: manual test
Flag: EXEMPT Simple log-line removal.
Change-Id: I458fbd6d3ecee6b1be353f67746050d50dd32e29
parent fdf9784b
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;
            }