Turn off debugging logspam for release

Fixes bug 2679101

Change-Id: I94cf1b1d0b732b2030008118eff3534f0e0608f7
This commit is contained in:
Christopher Tate
2011-01-12 20:06:07 -08:00
parent 1aaae92f99
commit 994ef9296a
3 changed files with 3 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ public class ViewDebug {
* Enables detailed logging of drag/drop operations.
* @hide
*/
public static final boolean DEBUG_DRAG = true;
public static final boolean DEBUG_DRAG = false;
/**
* <p>Enables or disables views consistency check. Even when this property is enabled,

View File

@@ -84,7 +84,7 @@ import java.util.Set;
class BackupManagerService extends IBackupManager.Stub {
private static final String TAG = "BackupManagerService";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
// How often we perform a backup pass. Privileged external callers can
// trigger an immediate pass.

View File

@@ -164,7 +164,7 @@ public class WindowManagerService extends IWindowManager.Stub
static final boolean DEBUG_STARTING_WINDOW = false;
static final boolean DEBUG_REORDER = false;
static final boolean DEBUG_WALLPAPER = false;
static final boolean DEBUG_DRAG = true;
static final boolean DEBUG_DRAG = false;
static final boolean SHOW_TRANSACTIONS = false;
static final boolean HIDE_STACK_CRAWLS = true;