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

Commit 8629be75 authored by Vadim Tryshev's avatar Vadim Tryshev
Browse files

Partially restoring reverted logging

ag/15858126 slowed down everything so
that the flake stopped to repro.

Attempting to reintroduce a more
lightweight logging hoping that the flake will
keep reproing.

Test: presubmit
Bug: 195031154

Change-Id: Ib533c22253e367cced1680a6f4d6736087f0837a
parent a666b8f5
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -275,8 +275,12 @@ public class DropTargetBar extends FrameLayout
    @Override
    protected void onVisibilityChanged(@NonNull View changedView, int visibility) {
        super.onVisibilityChanged(changedView, visibility);
        if (TestProtocol.sDebugTracing && visibility == VISIBLE) {
        if (TestProtocol.sDebugTracing) {
            if (visibility == VISIBLE) {
                Log.d(TestProtocol.NO_DROP_TARGET, "9");
            } else {
                Log.d(TestProtocol.NO_DROP_TARGET, "Hiding drop target", new Exception());
            }
        }
    }
}