From bbef77dbdf469c17f3be0817d0d09983a81b6123 Mon Sep 17 00:00:00 2001 From: Sunny Goyal Date: Tue, 9 Sep 2014 16:27:55 -0700 Subject: [PATCH] Disabling debug logs issue: 17327468 Change-Id: If0cd46e1309f58eed52e773ef15e3259df10c905 --- src/com/android/launcher3/IconCache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher3/IconCache.java b/src/com/android/launcher3/IconCache.java index 75be836386..ddc1bd949c 100644 --- a/src/com/android/launcher3/IconCache.java +++ b/src/com/android/launcher3/IconCache.java @@ -62,7 +62,7 @@ public class IconCache { // Empty class name is used for storing package default entry. private static final String EMPTY_CLASS_NAME = "."; - private static final boolean DEBUG = true; + private static final boolean DEBUG = false; private static class CacheEntry { public Bitmap icon; @@ -511,7 +511,7 @@ public class IconCache { Log.w(TAG, "failed to decode pre-load icon for " + key); } } catch (FileNotFoundException e) { - if (DEBUG) Log.d(TAG, "there is no restored icon for: " + key, e); + if (DEBUG) Log.d(TAG, "there is no restored icon for: " + key); } catch (IOException e) { Log.w(TAG, "failed to read pre-load icon for: " + key, e); } finally {