From e1f09e04377a6db98b3d783e4548f77c2dec8401 Mon Sep 17 00:00:00 2001 From: Nicholas Rizzio Date: Thu, 9 Feb 2017 18:43:53 -0500 Subject: [PATCH] Debloat ConversationAdapter's tag getName() includes the full package name, which adds a ridiculous amount of text to the debug log. Using getSimpleName() is in line with the rest of the repository. Closes #6202 // FREEBIE --- src/org/thoughtcrime/securesms/ConversationAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/ConversationAdapter.java b/src/org/thoughtcrime/securesms/ConversationAdapter.java index 59e2fa721c..ae2a526885 100644 --- a/src/org/thoughtcrime/securesms/ConversationAdapter.java +++ b/src/org/thoughtcrime/securesms/ConversationAdapter.java @@ -72,7 +72,7 @@ public class ConversationAdapter { private static final int MAX_CACHE_SIZE = 40; - private static final String TAG = ConversationAdapter.class.getName(); + private static final String TAG = ConversationAdapter.class.getSimpleName(); private final Map> messageRecordCache = Collections.synchronizedMap(new LRUCache>(MAX_CACHE_SIZE));