diff options
| author | 2011-02-11 16:57:40 -0800 | |
|---|---|---|
| committer | 2011-02-11 16:57:40 -0800 | |
| commit | c5d0fbbfdf91acdbc58f01e033e2e59093ef3e8a (patch) | |
| tree | 81317715474198d32f1987d36e0f79dddb16c57d | |
| parent | bdedbc7e3c406ed8b63aefd39ef7f73a08374ea0 (diff) | |
| parent | e9714e6c745a2bd7103d793c3473bbddf2c46712 (diff) | |
Merge "add more debug info to help (bug:3446432)"
| -rw-r--r-- | core/java/android/database/sqlite/SQLiteDatabase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDatabase.java b/core/java/android/database/sqlite/SQLiteDatabase.java index 085c26b74880..891a5d9d4601 100644 --- a/core/java/android/database/sqlite/SQLiteDatabase.java +++ b/core/java/android/database/sqlite/SQLiteDatabase.java @@ -407,7 +407,7 @@ public class SQLiteDatabase extends SQLiteClosable { // has not been available for 30sec. Log.w(TAG, "database lock has not been available for " + LOCK_WAIT_PERIOD + " sec. Current Owner of the lock is " + mLock.getOwnerDescription() + - ". Continuing to wait"); + ". Continuing to wait in thread: " + Thread.currentThread().getId()); } } catch (InterruptedException e) { // ignore the interruption |