diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java b/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java index 825644238ad0f..f9347b1377ac6 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java @@ -19,7 +19,6 @@ package com.android.systemui.statusbar; import android.os.Handler; import android.os.IBinder; import android.os.Message; -import android.util.Slog; import com.android.internal.statusbar.IStatusBar; import com.android.internal.statusbar.StatusBarIcon; @@ -147,7 +146,6 @@ class CommandQueue extends IStatusBar.Stub { private final class H extends Handler { public void handleMessage(Message msg) { final int what = msg.what & MSG_MASK; - Slog.d(TAG, "handleMessage what=0x" + Integer.toHexString(what) + " arg1=" + msg.arg1); switch (what) { case MSG_ICON: { final int index = msg.what & INDEX_MASK; diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java index 09cec67311f37..4d9e695100853 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java @@ -82,7 +82,6 @@ public abstract class StatusBarService extends Service implements CommandQueue.C // Set up the initial notification state N = notificationKeys.size(); - Slog.d(TAG, "installing " + N + " initial notifications"); if (N == notifications.size()) { for (int i=0; i