summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authornebkat <nebkat@teamhacksung.org>2012-12-18 20:32:12 +0000
committerGerrit Code Review <gerrit@review.cyanogenmod.com>2012-12-18 12:39:57 -0800
commit1151b2f1424ee0a13b8ed1071bac688c6ad9f491 (patch)
treea3608613d57d811bce8d84c9abd01e55cf8a5eb3 /src
parenta257f0d0f8cf83e5aa0656d16b876e3edc027009 (diff)
downloadandroid_packages_apps_Trebuchet-1151b2f1424ee0a13b8ed1071bac688c6ad9f491.tar.gz
android_packages_apps_Trebuchet-1151b2f1424ee0a13b8ed1071bac688c6ad9f491.tar.bz2
android_packages_apps_Trebuchet-1151b2f1424ee0a13b8ed1071bac688c6ad9f491.zip
Update log tags
Change-Id: I245c7574517096c17ab43736d6144f0f0aa04d40
Diffstat (limited to 'src')
-rw-r--r--src/com/cyanogenmod/trebuchet/ApplicationInfo.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/AppsCustomizePagedView.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/AppsCustomizeTabHost.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/CellLayout.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/DragController.java4
-rw-r--r--src/com/cyanogenmod/trebuchet/DropTarget.java3
-rw-r--r--src/com/cyanogenmod/trebuchet/Folder.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/Hotseat.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/IconCache.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/Launcher.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/LauncherModel.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/LauncherProvider.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedView.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedViewCellLayout.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedViewCellLayoutChildren.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedViewGridLayout.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedViewIcon.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PagedViewWidget.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/PreloadReceiver.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/ShortcutAndWidgetContainer.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/Utilities.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/WallpaperChooser.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/WallpaperChooserDialogFragment.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/Workspace.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/preference/Preferences.java2
25 files changed, 26 insertions, 27 deletions
diff --git a/src/com/cyanogenmod/trebuchet/ApplicationInfo.java b/src/com/cyanogenmod/trebuchet/ApplicationInfo.java
index defd45c01..e5a45872b 100644
--- a/src/com/cyanogenmod/trebuchet/ApplicationInfo.java
+++ b/src/com/cyanogenmod/trebuchet/ApplicationInfo.java
@@ -31,7 +31,7 @@ import java.util.HashMap;
* Represents an app in AllAppsView.
*/
class ApplicationInfo extends ItemInfo {
- private static final String TAG = "Launcher2.ApplicationInfo";
+ private static final String TAG = "Trebuchet.ApplicationInfo";
/**
* The intent used to start the application.
diff --git a/src/com/cyanogenmod/trebuchet/AppsCustomizePagedView.java b/src/com/cyanogenmod/trebuchet/AppsCustomizePagedView.java
index fca6eda9c..1ab909ace 100644
--- a/src/com/cyanogenmod/trebuchet/AppsCustomizePagedView.java
+++ b/src/com/cyanogenmod/trebuchet/AppsCustomizePagedView.java
@@ -237,7 +237,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
View.OnClickListener, View.OnKeyListener, DragSource,
PagedViewIcon.PressedCallback, PagedViewWidget.ShortPressListener,
LauncherTransitionable {
- static final String TAG = "AppsCustomizePagedView";
+ private static final String TAG = "Trebuchet.AppsCustomizePagedView";
/**
* The different content types that this paged view can show.
diff --git a/src/com/cyanogenmod/trebuchet/AppsCustomizeTabHost.java b/src/com/cyanogenmod/trebuchet/AppsCustomizeTabHost.java
index 6e0d14759..8a07883af 100644
--- a/src/com/cyanogenmod/trebuchet/AppsCustomizeTabHost.java
+++ b/src/com/cyanogenmod/trebuchet/AppsCustomizeTabHost.java
@@ -40,7 +40,7 @@ import java.util.ArrayList;
public class AppsCustomizeTabHost extends TabHost implements LauncherTransitionable,
TabHost.OnTabChangeListener {
- static final String LOG_TAG = "AppsCustomizeTabHost";
+ private static final String TAG = "Trebuchet.AppsCustomizeTabHost";
private static final String APPS_TAB_TAG = "APPS";
private static final String WIDGETS_TAB_TAG = "WIDGETS";
diff --git a/src/com/cyanogenmod/trebuchet/CellLayout.java b/src/com/cyanogenmod/trebuchet/CellLayout.java
index d61ffbaae..788806822 100644
--- a/src/com/cyanogenmod/trebuchet/CellLayout.java
+++ b/src/com/cyanogenmod/trebuchet/CellLayout.java
@@ -58,7 +58,7 @@ import java.util.HashMap;
import java.util.Stack;
public class CellLayout extends ViewGroup {
- static final String TAG = "CellLayout";
+ private static final String TAG = "Trebuchet.CellLayout";
private Launcher mLauncher;
private int mCellWidth;
diff --git a/src/com/cyanogenmod/trebuchet/DragController.java b/src/com/cyanogenmod/trebuchet/DragController.java
index 047c45548..da75b8fd8 100644
--- a/src/com/cyanogenmod/trebuchet/DragController.java
+++ b/src/com/cyanogenmod/trebuchet/DragController.java
@@ -41,7 +41,7 @@ import java.util.ArrayList;
* Class for initiating a drag within a view or across multiple views.
*/
public class DragController {
- private static final String TAG = "Launcher.DragController";
+ private static final String TAG = "Trebuchet.DragController";
/** Indicates the drag is a move. */
public static int DRAG_ACTION_MOVE = 0;
@@ -416,7 +416,7 @@ public class DragController {
@SuppressWarnings("all") // suppress dead code warning
final boolean debug = false;
if (debug) {
- Log.d(Launcher.TAG, "DragController.onInterceptTouchEvent " + ev + " mDragging="
+ Log.d(TAG, "onInterceptTouchEvent " + ev + " mDragging="
+ mDragging);
}
diff --git a/src/com/cyanogenmod/trebuchet/DropTarget.java b/src/com/cyanogenmod/trebuchet/DropTarget.java
index 6a929cb5e..92d644060 100644
--- a/src/com/cyanogenmod/trebuchet/DropTarget.java
+++ b/src/com/cyanogenmod/trebuchet/DropTarget.java
@@ -26,8 +26,7 @@ import android.util.Log;
*
*/
public interface DropTarget {
-
- public static final String TAG = "DropTarget";
+ static final String TAG = "Trebuchet.DropTarget";
class DragObject {
public int x = -1;
diff --git a/src/com/cyanogenmod/trebuchet/Folder.java b/src/com/cyanogenmod/trebuchet/Folder.java
index 1e759e04c..a43473b28 100644
--- a/src/com/cyanogenmod/trebuchet/Folder.java
+++ b/src/com/cyanogenmod/trebuchet/Folder.java
@@ -58,7 +58,7 @@ import java.util.Comparator;
public class Folder extends LinearLayout implements DragSource, View.OnClickListener,
View.OnLongClickListener, DropTarget, FolderListener, TextView.OnEditorActionListener,
View.OnFocusChangeListener {
- private static final String TAG = "Launcher.Folder";
+ private static final String TAG = "Trebuchet.Folder";
protected DragController mDragController;
protected Launcher mLauncher;
diff --git a/src/com/cyanogenmod/trebuchet/Hotseat.java b/src/com/cyanogenmod/trebuchet/Hotseat.java
index 46eb6d701..10a76235a 100644
--- a/src/com/cyanogenmod/trebuchet/Hotseat.java
+++ b/src/com/cyanogenmod/trebuchet/Hotseat.java
@@ -30,7 +30,7 @@ import com.cyanogenmod.trebuchet.R;
public class Hotseat extends FrameLayout {
@SuppressWarnings("unused")
- private static final String TAG = "Hotseat";
+ private static final String TAG = "Trebuchet.Hotseat";
private Launcher mLauncher;
private CellLayout mContent;
diff --git a/src/com/cyanogenmod/trebuchet/IconCache.java b/src/com/cyanogenmod/trebuchet/IconCache.java
index 15b49ba77..079e09191 100644
--- a/src/com/cyanogenmod/trebuchet/IconCache.java
+++ b/src/com/cyanogenmod/trebuchet/IconCache.java
@@ -35,7 +35,7 @@ import java.util.HashMap;
*/
public class IconCache {
@SuppressWarnings("unused")
- private static final String TAG = "Launcher.IconCache";
+ private static final String TAG = "Trebuchet.IconCache";
private static final int INITIAL_ICON_CACHE_CAPACITY = 50;
diff --git a/src/com/cyanogenmod/trebuchet/Launcher.java b/src/com/cyanogenmod/trebuchet/Launcher.java
index 0de10632b..a18f43cfe 100644
--- a/src/com/cyanogenmod/trebuchet/Launcher.java
+++ b/src/com/cyanogenmod/trebuchet/Launcher.java
@@ -121,7 +121,7 @@ import java.util.Set;
public final class Launcher extends Activity
implements View.OnClickListener, OnLongClickListener, LauncherModel.Callbacks,
View.OnTouchListener {
- static final String TAG = "Launcher";
+ private static final String TAG = "Trebuchet.Launcher";
static final boolean LOGD = false;
static final boolean PROFILE_STARTUP = false;
diff --git a/src/com/cyanogenmod/trebuchet/LauncherModel.java b/src/com/cyanogenmod/trebuchet/LauncherModel.java
index 6f1ab5656..39281d5e7 100644
--- a/src/com/cyanogenmod/trebuchet/LauncherModel.java
+++ b/src/com/cyanogenmod/trebuchet/LauncherModel.java
@@ -69,7 +69,7 @@ import java.util.Set;
*/
public class LauncherModel extends BroadcastReceiver {
static final boolean DEBUG_LOADERS = false;
- static final String TAG = "Launcher.Model";
+ private static final String TAG = "Trebuchet.LauncherModel";
private static final int ITEMS_CHUNK = 6; // batch size for the workspace icons
private final boolean mAppsCanBeOnExternalStorage;
diff --git a/src/com/cyanogenmod/trebuchet/LauncherProvider.java b/src/com/cyanogenmod/trebuchet/LauncherProvider.java
index df8186868..3d90922eb 100644
--- a/src/com/cyanogenmod/trebuchet/LauncherProvider.java
+++ b/src/com/cyanogenmod/trebuchet/LauncherProvider.java
@@ -61,7 +61,7 @@ import java.util.ArrayList;
import java.util.List;
public class LauncherProvider extends ContentProvider {
- private static final String TAG = "Launcher.LauncherProvider";
+ private static final String TAG = "Trebuchet.LauncherProvider";
private static final boolean LOGD = false;
private static final String DATABASE_NAME = "launcher.db";
diff --git a/src/com/cyanogenmod/trebuchet/PagedView.java b/src/com/cyanogenmod/trebuchet/PagedView.java
index 390b7e4aa..05ade2f62 100644
--- a/src/com/cyanogenmod/trebuchet/PagedView.java
+++ b/src/com/cyanogenmod/trebuchet/PagedView.java
@@ -51,7 +51,7 @@ import java.util.ArrayList;
* sequential list of "pages"
*/
public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
- private static final String TAG = "PagedView";
+ private static final String TAG = "Trebuchet.PagedView";
private static final boolean DEBUG = false;
protected static final int INVALID_PAGE = -1;
diff --git a/src/com/cyanogenmod/trebuchet/PagedViewCellLayout.java b/src/com/cyanogenmod/trebuchet/PagedViewCellLayout.java
index 5eaf92694..2b9866a67 100644
--- a/src/com/cyanogenmod/trebuchet/PagedViewCellLayout.java
+++ b/src/com/cyanogenmod/trebuchet/PagedViewCellLayout.java
@@ -32,7 +32,7 @@ import com.cyanogenmod.trebuchet.R;
* to give a preview of its contents.
*/
public class PagedViewCellLayout extends ViewGroup implements Page {
- static final String TAG = "PagedViewCellLayout";
+ private static final String TAG = "Trebuchet.PagedViewCellLayout";
private int mCellCountX;
private int mCellCountY;
diff --git a/src/com/cyanogenmod/trebuchet/PagedViewCellLayoutChildren.java b/src/com/cyanogenmod/trebuchet/PagedViewCellLayoutChildren.java
index 3b1a3fb0f..b82e197ee 100644
--- a/src/com/cyanogenmod/trebuchet/PagedViewCellLayoutChildren.java
+++ b/src/com/cyanogenmod/trebuchet/PagedViewCellLayoutChildren.java
@@ -27,7 +27,7 @@ import android.view.ViewGroup;
* to give a preview of its contents.
*/
public class PagedViewCellLayoutChildren extends ViewGroup {
- static final String TAG = "PagedViewCellLayout";
+ private static final String TAG = "Trebuchet.PagedViewCellLayout";
private boolean mCenterContent;
diff --git a/src/com/cyanogenmod/trebuchet/PagedViewGridLayout.java b/src/com/cyanogenmod/trebuchet/PagedViewGridLayout.java
index 546912f39..844265423 100644
--- a/src/com/cyanogenmod/trebuchet/PagedViewGridLayout.java
+++ b/src/com/cyanogenmod/trebuchet/PagedViewGridLayout.java
@@ -26,7 +26,7 @@ import android.widget.GridLayout;
* The grid based layout used strictly for the widget/wallpaper tab of the AppsCustomize pane
*/
public class PagedViewGridLayout extends GridLayout implements Page {
- static final String TAG = "PagedViewGridLayout";
+ private static final String TAG = "Trebuchet.PagedViewGridLayout";
private int mCellCountX;
private int mCellCountY;
diff --git a/src/com/cyanogenmod/trebuchet/PagedViewIcon.java b/src/com/cyanogenmod/trebuchet/PagedViewIcon.java
index 6296e67c0..d56c6e24b 100644
--- a/src/com/cyanogenmod/trebuchet/PagedViewIcon.java
+++ b/src/com/cyanogenmod/trebuchet/PagedViewIcon.java
@@ -32,7 +32,7 @@ public class PagedViewIcon extends TextView {
}
@SuppressWarnings("unused")
- private static final String TAG = "PagedViewIcon";
+ private static final String TAG = "Trebuchet.PagedViewIcon";
private static final float PRESS_ALPHA = 0.4f;
private PagedViewIcon.PressedCallback mPressedCallback;
diff --git a/src/com/cyanogenmod/trebuchet/PagedViewWidget.java b/src/com/cyanogenmod/trebuchet/PagedViewWidget.java
index 6fa0d39fd..5f2b80037 100644
--- a/src/com/cyanogenmod/trebuchet/PagedViewWidget.java
+++ b/src/com/cyanogenmod/trebuchet/PagedViewWidget.java
@@ -35,7 +35,7 @@ import com.cyanogenmod.trebuchet.R;
* The linear layout used strictly for the widget/wallpaper tab of the customization tray
*/
public class PagedViewWidget extends LinearLayout {
- static final String TAG = "PagedViewWidgetLayout";
+ private static final String TAG = "Trebuchet.PagedViewWidgetLayout";
private static boolean sDeletePreviewsWhenDetachedFromWindow = true;
diff --git a/src/com/cyanogenmod/trebuchet/PreloadReceiver.java b/src/com/cyanogenmod/trebuchet/PreloadReceiver.java
index 93b65a2e8..07ed03307 100644
--- a/src/com/cyanogenmod/trebuchet/PreloadReceiver.java
+++ b/src/com/cyanogenmod/trebuchet/PreloadReceiver.java
@@ -23,7 +23,7 @@ import android.text.TextUtils;
import android.util.Log;
public class PreloadReceiver extends BroadcastReceiver {
- private static final String TAG = "Launcher.PreloadReceiver";
+ private static final String TAG = "Trebuchet.PreloadReceiver";
private static final boolean LOGD = false;
public static final String EXTRA_WORKSPACE_NAME =
diff --git a/src/com/cyanogenmod/trebuchet/ShortcutAndWidgetContainer.java b/src/com/cyanogenmod/trebuchet/ShortcutAndWidgetContainer.java
index 57f56aac3..ade2cfb00 100644
--- a/src/com/cyanogenmod/trebuchet/ShortcutAndWidgetContainer.java
+++ b/src/com/cyanogenmod/trebuchet/ShortcutAndWidgetContainer.java
@@ -25,7 +25,7 @@ import android.view.View;
import android.view.ViewGroup;
public class ShortcutAndWidgetContainer extends ViewGroup {
- static final String TAG = "CellLayoutChildren";
+ private static final String TAG = "Trebuchet.CellLayoutChildren";
// These are temporary variables to prevent having to allocate a new object just to
// return an (x, y) value from helper functions. Do NOT use them to maintain other state.
diff --git a/src/com/cyanogenmod/trebuchet/Utilities.java b/src/com/cyanogenmod/trebuchet/Utilities.java
index fa696412a..5dca18ba8 100644
--- a/src/com/cyanogenmod/trebuchet/Utilities.java
+++ b/src/com/cyanogenmod/trebuchet/Utilities.java
@@ -41,7 +41,7 @@ import com.cyanogenmod.trebuchet.R;
*/
final class Utilities {
@SuppressWarnings("unused")
- private static final String TAG = "Launcher.Utilities";
+ private static final String TAG = "Trebuchet.Utilities";
private static int sIconWidth = -1;
private static int sIconHeight = -1;
diff --git a/src/com/cyanogenmod/trebuchet/WallpaperChooser.java b/src/com/cyanogenmod/trebuchet/WallpaperChooser.java
index d3ca00659..c220706db 100644
--- a/src/com/cyanogenmod/trebuchet/WallpaperChooser.java
+++ b/src/com/cyanogenmod/trebuchet/WallpaperChooser.java
@@ -25,7 +25,7 @@ import android.os.Bundle;
public class WallpaperChooser extends Activity {
@SuppressWarnings("unused")
- private static final String TAG = "Launcher.WallpaperChooser";
+ private static final String TAG = "Trebuchet.WallpaperChooser";
@Override
public void onCreate(Bundle icicle) {
diff --git a/src/com/cyanogenmod/trebuchet/WallpaperChooserDialogFragment.java b/src/com/cyanogenmod/trebuchet/WallpaperChooserDialogFragment.java
index aa323bf67..091bf5038 100644
--- a/src/com/cyanogenmod/trebuchet/WallpaperChooserDialogFragment.java
+++ b/src/com/cyanogenmod/trebuchet/WallpaperChooserDialogFragment.java
@@ -49,7 +49,7 @@ import java.util.ArrayList;
public class WallpaperChooserDialogFragment extends DialogFragment implements
AdapterView.OnItemSelectedListener, AdapterView.OnItemClickListener {
- private static final String TAG = "Launcher.WallpaperChooserDialogFragment";
+ private static final String TAG = "Trebuchet.WallpaperChooserDialogFragment";
private static final String EMBEDDED_KEY = "com.cyanogenmod.trebuchet."
+ "WallpaperChooserDialogFragment.EMBEDDED_KEY";
diff --git a/src/com/cyanogenmod/trebuchet/Workspace.java b/src/com/cyanogenmod/trebuchet/Workspace.java
index 231d8ee23..30c6d019a 100644
--- a/src/com/cyanogenmod/trebuchet/Workspace.java
+++ b/src/com/cyanogenmod/trebuchet/Workspace.java
@@ -81,7 +81,7 @@ import java.util.Set;
public class Workspace extends SmoothPagedView
implements DropTarget, DragSource, DragScroller, View.OnTouchListener,
DragController.DragListener, LauncherTransitionable, ViewGroup.OnHierarchyChangeListener {
- private static final String TAG = "Launcher.Workspace";
+ private static final String TAG = "Trebuchet.Workspace";
// Y rotation to apply to the workspace screens
private static final float WORKSPACE_ROTATION = 12.5f;
diff --git a/src/com/cyanogenmod/trebuchet/preference/Preferences.java b/src/com/cyanogenmod/trebuchet/preference/Preferences.java
index 8f90c4f47..d4013a25c 100644
--- a/src/com/cyanogenmod/trebuchet/preference/Preferences.java
+++ b/src/com/cyanogenmod/trebuchet/preference/Preferences.java
@@ -27,7 +27,7 @@ import com.cyanogenmod.trebuchet.R;
public class Preferences extends PreferenceActivity
implements SharedPreferences.OnSharedPreferenceChangeListener {
- private static final String TAG = "Launcher.Preferences";
+ private static final String TAG = "Trebuchet.Preferences";
private SharedPreferences mPrefs;