remove logging
Change-Id: I42c2332c3c114700f5ade77b63b4f6010ea5507a
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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));
|
||||
|
||||
@@ -272,7 +272,7 @@ public class StatusBarManagerService extends IStatusBarService.Stub
|
||||
* the status bar is visible or not.
|
||||
*/
|
||||
public void visibilityChanged(boolean visible) {
|
||||
Slog.d(TAG, "visibilityChanged visible=" + visible);
|
||||
//Slog.d(TAG, "visibilityChanged visible=" + visible);
|
||||
}
|
||||
|
||||
public void onNotificationClick(String pkg, String tag, int id) {
|
||||
@@ -288,7 +288,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub
|
||||
// ================================================================================
|
||||
public IBinder addNotification(StatusBarNotification notification) {
|
||||
synchronized (mNotifications) {
|
||||
Slog.d(TAG, "addNotification notification=" + notification);
|
||||
IBinder key = new Binder();
|
||||
mNotifications.put(key, notification);
|
||||
if (mBar != null) {
|
||||
|
||||
Reference in New Issue
Block a user