diff options
| author | Joe Onorato <joeo@android.com> | 2010-06-01 17:10:25 -0700 |
|---|---|---|
| committer | Joe Onorato <joeo@android.com> | 2010-06-02 14:48:46 -0700 |
| commit | 169af47b0076457854cc0f92d6b015195837686d (patch) | |
| tree | c60cbfc4b398fcb80d141ec071ef2d7d725a7135 /packages/SystemUI | |
| parent | c91460d2c3a6ad51cdc455abcc540bf887bc6785 (diff) | |
| download | frameworks_base-169af47b0076457854cc0f92d6b015195837686d.zip frameworks_base-169af47b0076457854cc0f92d6b015195837686d.tar.gz frameworks_base-169af47b0076457854cc0f92d6b015195837686d.tar.bz2 | |
remove logging
Change-Id: I42c2332c3c114700f5ade77b63b4f6010ea5507a
Diffstat (limited to 'packages/SystemUI')
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java | 2 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java b/packages/SystemUI/src/com/android/systemui/statusbar/CommandQueue.java index 8256442..f9347b1 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 09cec67..4d9e695 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<N; i++) { addNotification(notificationKeys.get(i), notifications.get(i)); |
