Skip to content

Commit

Permalink
wip rc replace class name for logger
Browse files Browse the repository at this point in the history
  • Loading branch information
iampopovich committed Feb 14, 2025
1 parent 3c87e6b commit e0576fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

class BoundZmqEventBus implements EventBus {

private static final Logger LOG = Logger.getLogger(EventBus.class.getName());
private static final Logger LOG = Logger.getLogger(BoundZmqEventBus.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 @@ -59,7 +59,7 @@
class UnboundZmqEventBus implements EventBus {

static final EventName REJECTED_EVENT = new EventName("selenium-rejected-event");
private static final Logger LOG = Logger.getLogger(EventBus.class.getName());
private static final Logger LOG = Logger.getLogger(UnboundZmqEventBus.class.getName());
private static final Json JSON = new Json();
private final AtomicBoolean pollingStarted = new AtomicBoolean(false);
private final PollingRunnable socketPolling;
Expand Down
2 changes: 1 addition & 1 deletion java/test/org/openqa/selenium/grid/router/JmxTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

class JmxTest {

private static final Logger LOG = Logger.getLogger(LocalNode.class.getName());
private static final Logger LOG = Logger.getLogger(JmxTest.class.getName());

private final Capabilities CAPS = new ImmutableCapabilities("browserName", "cheese");
private final MBeanServer beanServer = ManagementFactory.getPlatformMBeanServer();
Expand Down

0 comments on commit e0576fc

Please sign in to comment.