Make logger static final variable
Change-Id: I1ea7f3bb9a74a1b1f139512f3d253a1916b30c3e
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -77,7 +77,7 @@ import com.google.common.collect.Lists; | ... | @@ -77,7 +77,7 @@ import com.google.common.collect.Lists; |
77 | @Service | 77 | @Service |
78 | public class IntentManager | 78 | public class IntentManager |
79 | implements IntentService, IntentExtensionService { | 79 | implements IntentService, IntentExtensionService { |
80 | - private final Logger log = getLogger(getClass()); | 80 | + private static final Logger log = getLogger(IntentManager.class); |
81 | 81 | ||
82 | public static final String INTENT_NULL = "Intent cannot be null"; | 82 | public static final String INTENT_NULL = "Intent cannot be null"; |
83 | public static final String INTENT_ID_NULL = "Intent ID cannot be null"; | 83 | public static final String INTENT_ID_NULL = "Intent ID cannot be null"; | ... | ... |
-
Please register or login to post a comment