Skip to content

Commit

Permalink
[fixup] Loggers should not be public
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jun 1, 2020
1 parent fc45ab7 commit 13243d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class WebDriverBackedSeleniumHandler implements Routable {

// Prepare the shared set of thingies
private static final Map<SessionId, CommandProcessor> PROCESSORS = new ConcurrentHashMap<>();
public static final Logger LOG = Logger.getLogger(WebDriverBackedSelenium.class.getName());
private static final Logger LOG = Logger.getLogger(WebDriverBackedSelenium.class.getName());

private NewSessionPipeline pipeline;
private ActiveSessions sessions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

class BoundZmqEventBus implements EventBus {

public static final Logger LOG = Logger.getLogger(EventBus.class.getName());
private static final Logger LOG = Logger.getLogger(EventBus.class.getName());
private final UnboundZmqEventBus delegate;
private final ZMQ.Socket xpub;
private final ZMQ.Socket xsub;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

public class LocalNode extends Node {

public static final Json JSON = new Json();
private static final Json JSON = new Json();
private static final Logger LOG = Logger.getLogger(LocalNode.class.getName());
private final URI externalUri;
private final URI gridUri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class SessionSlot implements
Function<CreateSessionRequest, Optional<ActiveSession>>,
Predicate<Capabilities> {

public static final Logger LOG = Logger.getLogger(SessionSlot.class.getName());
private static final Logger LOG = Logger.getLogger(SessionSlot.class.getName());
private final EventBus bus;
private final Capabilities stereotype;
private final SessionFactory factory;
Expand Down

0 comments on commit 13243d7

Please sign in to comment.