Consistently import org.slf4j.LoggerFactory
Change-Id: Iae7b3f6a6471b0e633840607d3a1cec412ef95e8
This commit is contained in:
@@ -35,10 +35,10 @@ import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
class DbGroupMemberAuditListener implements GroupMemberAuditListener {
|
||||
private static final Logger log =
|
||||
org.slf4j.LoggerFactory.getLogger(DbGroupMemberAuditListener.class);
|
||||
private static final Logger log = LoggerFactory.getLogger(DbGroupMemberAuditListener.class);
|
||||
|
||||
private final SchemaFactory<ReviewDb> schema;
|
||||
private final AccountCache accountCache;
|
||||
|
||||
@@ -32,10 +32,11 @@ import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@Singleton
|
||||
public class ListIncludedGroups implements RestReadView<GroupResource> {
|
||||
private static final Logger log = org.slf4j.LoggerFactory.getLogger(ListIncludedGroups.class);
|
||||
private static final Logger log = LoggerFactory.getLogger(ListIncludedGroups.class);
|
||||
|
||||
private final GroupControl.Factory controlFactory;
|
||||
private final Provider<ReviewDb> dbProvider;
|
||||
|
||||
Reference in New Issue
Block a user