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

Commit f0cae3fd authored by Wale Ogunwale's avatar Wale Ogunwale
Browse files

Removed some spammy WindowManager logs.

Bug: 22940651
Change-Id: I0f0e011ef71151c3608b1ee118a94b384dd0a75c
parent 950af418
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -859,12 +859,9 @@ final class WindowState implements WindowManagerPolicy.WindowState {
    Task getTask() {
        AppWindowToken wtoken = mAppToken == null ? mService.mFocusedApp : mAppToken;
        if (wtoken == null) {
            Slog.e(TAG, "getTask: " + this + " null wtoken " + " Callers=" + Debug.getCallers(5));
            return null;
        }
        final Task task = wtoken.mTask;
        if (task == null) Slog.e(TAG, "getStack: " + this + " couldn't find task for " + wtoken
                    + " Callers=" + Debug.getCallers(5));
        return task;
    }

@@ -874,7 +871,6 @@ final class WindowState implements WindowManagerPolicy.WindowState {
            if (task.mStack != null) {
                return task.mStack;
            }
            Slog.e(TAG, "getStack: mStack null for task=" + task);
        }
        return mDisplayContent.getHomeStack();
    }