diff options
author | Chiao Cheng <chiaocheng@google.com> | 2012-12-12 11:28:35 -0800 |
---|---|---|
committer | Chiao Cheng <chiaocheng@google.com> | 2012-12-12 11:28:35 -0800 |
commit | ffc4741fb2eeef40c5a5c4674663565e6420035c (patch) | |
tree | 0d2bf155e47d15b6e53348a02a2df4ce71fa36b6 /src | |
parent | 95ce5516d5e62e543703cd17a4394f81b6a1e425 (diff) | |
download | packages_apps_ContactsCommon-ffc4741fb2eeef40c5a5c4674663565e6420035c.tar.gz packages_apps_ContactsCommon-ffc4741fb2eeef40c5a5c4674663565e6420035c.tar.bz2 packages_apps_ContactsCommon-ffc4741fb2eeef40c5a5c4674663565e6420035c.zip |
Log clean-up.
Bug: 5571947
Change-Id: I958311b44739fe8fedeb5fea0dd8e507837d8e31
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/contacts/common/model/AccountTypeManager.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/contacts/common/model/AccountTypeManager.java b/src/com/android/contacts/common/model/AccountTypeManager.java index b92d7de6..a8eb3778 100644 --- a/src/com/android/contacts/common/model/AccountTypeManager.java +++ b/src/com/android/contacts/common/model/AccountTypeManager.java @@ -613,7 +613,9 @@ class AccountTypeManagerImpl extends AccountTypeManager } if (kind == null) { - Log.w(TAG, "Unknown type=" + type + ", mime=" + mimeType); + if (Log.isLoggable(TAG, Log.DEBUG)) { + Log.d(TAG, "Unknown type=" + type + ", mime=" + mimeType); + } } return kind; |