Turn off debugging logspam for release
Fixes bug 2679101 Change-Id: I94cf1b1d0b732b2030008118eff3534f0e0608f7
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user