summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasu Nori <vnori@google.com>2010-09-14 16:02:02 -0700
committerVasu Nori <vnori@google.com>2010-09-14 16:02:02 -0700
commit071df261ed204c0c732570690921389e1c0b9bcd (patch)
treeefbc963516ce94f1fe7b9be945afa106956b7307
parent4c9a5be4a3749f305ad56fe841e5d07c03c8ac95 (diff)
downloadframeworks_base-071df261ed204c0c732570690921389e1c0b9bcd.zip
frameworks_base-071df261ed204c0c732570690921389e1c0b9bcd.tar.gz
frameworks_base-071df261ed204c0c732570690921389e1c0b9bcd.tar.bz2
change TAG value from "Cursor" to "SQLiteCursor"
it is confusing to figure out where the debug messages are coming from. this TAG value change helps Change-Id: I3a6f445fbced4a962cc13dbb8dd1d7968f9aec9d
-rw-r--r--core/java/android/database/sqlite/SQLiteCursor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/sqlite/SQLiteCursor.java b/core/java/android/database/sqlite/SQLiteCursor.java
index d58a689..fa7763d 100644
--- a/core/java/android/database/sqlite/SQLiteCursor.java
+++ b/core/java/android/database/sqlite/SQLiteCursor.java
@@ -40,7 +40,7 @@ import java.util.concurrent.locks.ReentrantLock;
* threads should perform its own synchronization when using the SQLiteCursor.
*/
public class SQLiteCursor extends AbstractWindowedCursor {
- static final String TAG = "Cursor";
+ static final String TAG = "SQLiteCursor";
static final int NO_COUNT = -1;
/** The name of the table to edit */