diff options
author | Brad Fitzpatrick <bradfitz@android.com> | 2010-10-07 11:26:57 -0700 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@android.com> | 2010-10-07 11:26:57 -0700 |
commit | 90bc5ee02bd91c138f88180879c6ef748a578f47 (patch) | |
tree | 35e5ca56e0378211022a148db8287025b2969fb0 | |
parent | 30f5c8fede241e7560f4a33e48af3a4627fd5efc (diff) | |
download | frameworks_base-90bc5ee02bd91c138f88180879c6ef748a578f47.zip frameworks_base-90bc5ee02bd91c138f88180879c6ef748a578f47.tar.gz frameworks_base-90bc5ee02bd91c138f88180879c6ef748a578f47.tar.bz2 |
Quiet unnecessary debug logging.
Change-Id: I46d8aff5790db371d60b2066acbbdd55cfad8074
-rw-r--r-- | core/java/android/app/ContextImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java index e93e684..e66f52a 100644 --- a/core/java/android/app/ContextImpl.java +++ b/core/java/android/app/ContextImpl.java @@ -2775,7 +2775,7 @@ class ContextImpl extends Context { synchronized (this) { if (mDiskWritesInFlight > 0) { // If we know we caused it, it's not unexpected. - Log.d(TAG, "disk write in flight, not unexpected."); + if (DEBUG) Log.d(TAG, "disk write in flight, not unexpected."); return false; } } |