Skip to content

Commit f777911

Browse files
committed
[java] Made dialect related log debug level
Related to #11088.
1 parent b2d8eb0 commit f777911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/remote/ProtocolHandshake.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public Result createSession(HttpHandler client, Command command) throws IOExcept
6868

6969
if (result.isRight()) {
7070
Result toReturn = result.right();
71-
LOG.info(String.format("Detected upstream dialect: %s", toReturn.dialect));
71+
LOG.log(Level.FINE, "Detected upstream dialect: {0}", toReturn.dialect);
7272

7373
List<String> invalid = desired.asMap().keySet()
7474
.stream()

0 commit comments

Comments
 (0)