diff --git a/java/src/org/openqa/selenium/grid/node/local/LocalNode.java b/java/src/org/openqa/selenium/grid/node/local/LocalNode.java index 924c04620c27e..ada1e7626f845 100644 --- a/java/src/org/openqa/selenium/grid/node/local/LocalNode.java +++ b/java/src/org/openqa/selenium/grid/node/local/LocalNode.java @@ -152,7 +152,7 @@ private LocalNode( .ticker(ticker) .removalListener((RemovalListener) notification -> { // Attempt to stop the session - LOG.log(Debug.getDebugLogLevel(), "Stopping session %s", notification.getKey().toString()); + LOG.log(Debug.getDebugLogLevel(), "Stopping session {0}", notification.getKey().toString()); SessionSlot slot = notification.getValue(); if (!slot.isAvailable()) { slot.stop();