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.Handler;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.os.Message;
|
import android.os.Message;
|
||||||
import android.util.Slog;
|
|
||||||
|
|
||||||
import com.android.internal.statusbar.IStatusBar;
|
import com.android.internal.statusbar.IStatusBar;
|
||||||
import com.android.internal.statusbar.StatusBarIcon;
|
import com.android.internal.statusbar.StatusBarIcon;
|
||||||
@@ -147,7 +146,6 @@ class CommandQueue extends IStatusBar.Stub {
|
|||||||
private final class H extends Handler {
|
private final class H extends Handler {
|
||||||
public void handleMessage(Message msg) {
|
public void handleMessage(Message msg) {
|
||||||
final int what = msg.what & MSG_MASK;
|
final int what = msg.what & MSG_MASK;
|
||||||
Slog.d(TAG, "handleMessage what=0x" + Integer.toHexString(what) + " arg1=" + msg.arg1);
|
|
||||||
switch (what) {
|
switch (what) {
|
||||||
case MSG_ICON: {
|
case MSG_ICON: {
|
||||||
final int index = msg.what & INDEX_MASK;
|
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
|
// Set up the initial notification state
|
||||||
N = notificationKeys.size();
|
N = notificationKeys.size();
|
||||||
Slog.d(TAG, "installing " + N + " initial notifications");
|
|
||||||
if (N == notifications.size()) {
|
if (N == notifications.size()) {
|
||||||
for (int i=0; i<N; i++) {
|
for (int i=0; i<N; i++) {
|
||||||
addNotification(notificationKeys.get(i), notifications.get(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.
|
* the status bar is visible or not.
|
||||||
*/
|
*/
|
||||||
public void visibilityChanged(boolean visible) {
|
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) {
|
public void onNotificationClick(String pkg, String tag, int id) {
|
||||||
@@ -288,7 +288,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub
|
|||||||
// ================================================================================
|
// ================================================================================
|
||||||
public IBinder addNotification(StatusBarNotification notification) {
|
public IBinder addNotification(StatusBarNotification notification) {
|
||||||
synchronized (mNotifications) {
|
synchronized (mNotifications) {
|
||||||
Slog.d(TAG, "addNotification notification=" + notification);
|
|
||||||
IBinder key = new Binder();
|
IBinder key = new Binder();
|
||||||
mNotifications.put(key, notification);
|
mNotifications.put(key, notification);
|
||||||
if (mBar != null) {
|
if (mBar != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user