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

Commit 9c62e186 authored by Vinit Nayak's avatar Vinit Nayak
Browse files

Remove debug logs, root cause found.

Bug: 146964271
Change-Id: I38ed3b4b1a90fa1ff9a3aa4bb5547300ddd92358
parent 4cb77a60
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -540,8 +540,6 @@ public class TouchInteractionService extends Service implements PluginListener<O
        boolean canStartSystemGesture = mDeviceState.canStartSystemGesture();

        if (!mDeviceState.isUserUnlocked()) {
            Log.d(TAG, "User locked. Can start system gesture? " + canStartSystemGesture
                + " sysUiFlags: " + mDeviceState.getSystemUiStateFlags());
            if (canStartSystemGesture) {
                // This handles apps launched in direct boot mode (e.g. dialer) as well as apps
                // launched while device is locked even after exiting direct boot mode (e.g. camera).
+0 −3
Original line number Diff line number Diff line
@@ -73,8 +73,6 @@ public class RecentsAnimationDeviceState implements
        NavigationModeChangeListener,
        DefaultDisplay.DisplayInfoChangeListener {

    private static final String TAG = "RecentsAnimationDeviceState";

    private final Context mContext;
    private final SysUINavigationMode mSysUiNavMode;
    private final DefaultDisplay mDefaultDisplay;
@@ -97,7 +95,6 @@ public class RecentsAnimationDeviceState implements
        @Override
        public void onReceive(Context context, Intent intent) {
            if (ACTION_USER_UNLOCKED.equals(intent.getAction())) {
                Log.d(TAG, "User Unlocked Broadcast Received");
                mIsUserUnlocked = true;
                notifyUserUnlocked();
            }