Skip to content

Commit f2d458f

Browse files
committed
[grid] Fixing a log output [skip ci]
1 parent 025d96e commit f2d458f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/grid/node/local/LocalNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ private LocalNode(
152152
.ticker(ticker)
153153
.removalListener((RemovalListener<SessionId, SessionSlot>) notification -> {
154154
// Attempt to stop the session
155-
LOG.log(Debug.getDebugLogLevel(), "Stopping session %s", notification.getKey().toString());
155+
LOG.log(Debug.getDebugLogLevel(), "Stopping session {0}", notification.getKey().toString());
156156
SessionSlot slot = notification.getValue();
157157
if (!slot.isAvailable()) {
158158
slot.stop();

0 commit comments

Comments
 (0)