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

Commit 0cc439ab authored by Alex Chau's avatar Alex Chau Committed by Android (Google) Code Review
Browse files

Merge "Partially restoring reverted logging" into sc-v2-dev

parents 14c8f45b 8629be75
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());
            }
        }
    }
}