Files
Lawnchair/src/com/android/launcher3/util/LogConfig.java
T
Hyunyoung Song 3c7d9cbb20 Clean up around 1) Log.VERBOSE and 2) dump
b/31772480

Note: in the follow up CL, I will add the dump result of the bgDataModel
to a proto

Change-Id: I5261cff0fb29cedd1dd772b8b15f67095ad5b967
2017-02-01 15:11:08 -08:00

32 lines
950 B
Java

package com.android.launcher3.util;
/**
* This is a utility class that keeps track of all the tag that can be enabled to debug
* a behavior in runtime.
*
* To use any of the strings defined in this class, execute the following command.
*
* $ adb shell setprop log.tag.TAGNAME VERBOSE
*/
public class LogConfig {
// These are list of strings that can be used to replace TAGNAME.
/**
* After this tag is turned on, whenever there is n user event, debug information is
* printed out to logcat.
*/
public static final String USEREVENT = "UserEvent";
/**
* When turned on, all icons are kept on the home screen, even if they don't have an active
* session.
*/
public static final String KEEP_ALL_ICONS = "KeepAllIcons";
/**
* When turned on, icon cache is only fetched from memory and not disk.
*/
public static final String MEMORY_ONLY_ICON_CACHE = "MemoryOnlyIconCache";
}