Skip to content

Commit

Permalink
Remove extraneous logs.
Browse files Browse the repository at this point in the history
Change-Id: I4c47d36748de91bd6fddc419afbf59552bf63e9a
  • Loading branch information
Dianne Hackborn committed Nov 8, 2012
1 parent 3fe2cb4 commit 7ff3011
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

import android.app.PendingIntent;
import android.app.PendingIntent.CanceledException;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
Expand Down Expand Up @@ -193,7 +192,7 @@ public void setCurrentClientId(int clientGeneration, PendingIntent mediaIntent,

public TransportControlView(Context context, AttributeSet attrs) {
super(context, attrs);
Log.v(TAG, "Create TCV " + this);
if (DEBUG) Log.v(TAG, "Create TCV " + this);
mAudioManager = new AudioManager(mContext);
mCurrentPlayState = RemoteControlClient.PLAYSTATE_NONE; // until we get a callback
mIRCD = new IRemoteControlDisplayWeak(mHandler);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public class PhoneStatusBar extends BaseStatusBar {
public void onAnimationEnd(Animator animation) {
// double-check to avoid races
if (mStatusBarContents.getAlpha() == 0) {
Slog.d(TAG, "makeIconsInvisible");
if (DEBUG) Slog.d(TAG, "makeIconsInvisible");
mStatusBarContents.setVisibility(View.INVISIBLE);
}
}
Expand Down Expand Up @@ -518,7 +518,7 @@ public void onLayoutChange(View v, int left, int top, int right, int bottom,

mCarrierLabel = (TextView)mStatusBarWindow.findViewById(R.id.carrier_label);
mShowCarrierInPanel = (mCarrierLabel != null);
Slog.v(TAG, "carrierlabel=" + mCarrierLabel + " show=" + mShowCarrierInPanel);
if (DEBUG) Slog.v(TAG, "carrierlabel=" + mCarrierLabel + " show=" + mShowCarrierInPanel);
if (mShowCarrierInPanel) {
mCarrierLabel.setVisibility(mCarrierLabelVisible ? View.VISIBLE : View.INVISIBLE);

Expand Down Expand Up @@ -853,7 +853,7 @@ public void removeIcon(String slot, int index, int viewIndex) {
}

public void addNotification(IBinder key, StatusBarNotification notification) {
/* if (DEBUG) */ Slog.d(TAG, "addNotification score=" + notification.score);
if (DEBUG) Slog.d(TAG, "addNotification score=" + notification.score);
StatusBarIconView iconView = addNotificationViews(key, notification);
if (iconView == null) return;

Expand Down Expand Up @@ -908,7 +908,7 @@ public void addNotification(IBinder key, StatusBarNotification notification) {
awakenDreams();

// not immersive & a full-screen alert should be shown
Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");
if (DEBUG) Slog.d(TAG, "Notification has fullScreenIntent; sending fullScreenIntent");
try {
notification.notification.fullScreenIntent.send();
} catch (PendingIntent.CanceledException e) {
Expand Down Expand Up @@ -2248,7 +2248,7 @@ public void onClick(View v) {

private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
Slog.v(TAG, "onReceive: " + intent);
if (DEBUG) Slog.v(TAG, "onReceive: " + intent);
String action = intent.getAction();
if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action)) {
int flags = CommandQueue.FLAG_EXCLUDE_NONE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private void inflateKeyguardView(Bundle options) {
mKeyguardHost.removeView(v);
}
// TODO: Remove once b/7094175 is fixed
Slog.d(TAG, "inflateKeyguardView: b/7094175 mContext.config="
if (false) Slog.d(TAG, "inflateKeyguardView: b/7094175 mContext.config="
+ mContext.getResources().getConfiguration());
final LayoutInflater inflater = LayoutInflater.from(mContext);
View view = inflater.inflate(R.layout.keyguard_host_view, mKeyguardHost, true);
Expand Down
2 changes: 1 addition & 1 deletion services/java/com/android/server/BackupManagerService.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@

class BackupManagerService extends IBackupManager.Stub {
private static final String TAG = "BackupManagerService";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private static final boolean MORE_DEBUG = false;

// Name and current contents version of the full-backup manifest file
Expand Down
4 changes: 2 additions & 2 deletions services/java/com/android/server/ConnectivityService.java
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ private static NetworkStateTracker makeWimaxStateTracker(
wimaxStateTrackerClassName = context.getResources().getString(
com.android.internal.R.string.config_wimaxStateTrackerClassname);

log("wimaxJarLocation: " + wimaxJarLocation);
if (DBG) log("wimaxJarLocation: " + wimaxJarLocation);
wimaxClassLoader = new DexClassLoader(wimaxJarLocation,
new ContextWrapper(context).getCacheDir().getAbsolutePath(),
wimaxLibLocation, ClassLoader.getSystemClassLoader());
Expand All @@ -648,7 +648,7 @@ private static NetworkStateTracker makeWimaxStateTracker(
}

try {
log("Starting Wimax Service... ");
if (DBG) log("Starting Wimax Service... ");

Constructor wmxStTrkrConst = wimaxStateTrackerClass.getConstructor
(new Class[] {Context.class, Handler.class});
Expand Down
6 changes: 3 additions & 3 deletions services/java/com/android/server/LocationManagerService.java
Original file line number Diff line number Diff line change
Expand Up @@ -1214,8 +1214,8 @@ private void requestLocationUpdatesLocked(LocationRequest request, Receiver rece
throw new IllegalArgumentException("provider doesn't exisit: " + provider);
}

Log.i(TAG, "request " + Integer.toHexString(System.identityHashCode(receiver)) + " " +
name + " " + request + " from " + packageName + "(" + uid + ")");
if (D) Log.d(TAG, "request " + Integer.toHexString(System.identityHashCode(receiver))
+ " " + name + " " + request + " from " + packageName + "(" + uid + ")");

UpdateRecord record = new UpdateRecord(name, request, receiver);
UpdateRecord oldRecord = receiver.mUpdateRecords.put(name, record);
Expand Down Expand Up @@ -1253,7 +1253,7 @@ public void removeUpdates(ILocationListener listener, PendingIntent intent,
}

private void removeUpdatesLocked(Receiver receiver) {
Log.i(TAG, "remove " + Integer.toHexString(System.identityHashCode(receiver)));
if (D) Log.i(TAG, "remove " + Integer.toHexString(System.identityHashCode(receiver)));

if (mReceivers.remove(receiver.mKey) != null && receiver.isListener()) {
receiver.getListener().asBinder().unlinkToDeath(receiver, 0);
Expand Down
6 changes: 3 additions & 3 deletions services/java/com/android/server/usb/UsbDeviceManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,9 @@ private void updateUsbNotification() {
id = com.android.internal.R.string.usb_accessory_notification_title;
} else {
// There is a different notification for USB tethering so we don't need one here
if (!containsFunction(mCurrentFunctions, UsbManager.USB_FUNCTION_RNDIS)) {
Slog.e(TAG, "No known USB function in updateUsbNotification");
}
//if (!containsFunction(mCurrentFunctions, UsbManager.USB_FUNCTION_RNDIS)) {
// Slog.e(TAG, "No known USB function in updateUsbNotification");
//}
}
}
if (id != mUsbNotificationId) {
Expand Down
9 changes: 2 additions & 7 deletions services/java/com/android/server/wm/WindowManagerService.java
Original file line number Diff line number Diff line change
Expand Up @@ -2779,10 +2779,7 @@ public int relayoutWindow(Session session, IWindow client, int seq,
}
}

if (DEBUG_LAYOUT
// TODO: Remove once b/7094175 is fixed
|| ((String)win.mAttrs.getTitle()).contains("Keyguard")
) Slog.v(TAG, "Relayout " + win + ": viewVisibility=" + viewVisibility
if (DEBUG_LAYOUT) Slog.v(TAG, "Relayout " + win + ": viewVisibility=" + viewVisibility
+ " req=" + requestedWidth + "x" + requestedHeight + " " + win.mAttrs);

win.mEnforceSizeCompat = (win.mAttrs.flags & FLAG_COMPATIBLE_WINDOW) != 0;
Expand Down Expand Up @@ -9403,9 +9400,7 @@ private final void performLayoutAndPlaceSurfacesLockedInner(boolean recoveringMe
"Reporting new frame to " + win + ": " + win.mCompatFrame);
int diff = 0;
boolean configChanged = win.isConfigChanged();
if ((DEBUG_RESIZE || DEBUG_ORIENTATION || DEBUG_CONFIGURATION
// TODO: Remove once b/7094175 is fixed
|| ((String)win.mAttrs.getTitle()).contains("Keyguard"))
if ((DEBUG_RESIZE || DEBUG_ORIENTATION || DEBUG_CONFIGURATION)
&& configChanged) {
Slog.i(TAG, "Sending new config to window " + win + ": "
+ winAnimator.mSurfaceW + "x" + winAnimator.mSurfaceH
Expand Down

0 comments on commit 7ff3011

Please sign in to comment.