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

Commit 8355e932 authored by Daniel Sandler's avatar Daniel Sandler
Browse files

Remove logspew.

Bug: 5118028
Change-Id: I5517d79624020aa7ceeabf251581b3baf2f7b080
parent f1595864
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -551,7 +551,9 @@ public class PhoneStatusBar extends StatusBar {
        boolean immersive = false;
        try {
            immersive = ActivityManagerNative.getDefault().isTopActivityImmersive();
            if (DEBUG) {
                Slog.d(TAG, "Top activity is " + (immersive?"immersive":"not immersive"));
            }
        } catch (RemoteException ex) {
        }
        if (immersive) {
@@ -581,8 +583,7 @@ public class PhoneStatusBar extends StatusBar {
            }
        } else if (notification.notification.fullScreenIntent != null) {
            // not immersive & a full-screen alert should be shown
            Slog.d(TAG, "Notification has fullScreenIntent and activity is not immersive;"
                    + " sending fullScreenIntent");
            Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");
            try {
                notification.notification.fullScreenIntent.send();
            } catch (PendingIntent.CanceledException e) {