Skip to content

Commit bf895d3

Browse files
Artur-lukeis
authored andcommitted
Change log level for protocol debug messages to 'fine' (#3134)
1 parent 119cae4 commit bf895d3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ public Result createSession(HttpClient client, Command command)
6060
parameters.append(",");
6161
amendOssParamters(parameters, des, req);
6262
parameters.append("}");
63-
LOG.info("Attempting bi-dialect session, assuming Postel's Law holds true on the remote end");
63+
LOG.fine("Attempting bi-dialect session, assuming Postel's Law holds true on the remote end");
6464
Optional<Result> result = createSession(client, parameters);
6565

6666
// Assume a fragile OSS webdriver implementation
6767
if (!result.isPresent()) {
6868
parameters = new StringBuilder("{");
6969
amendOssParamters(parameters, des, req);
7070
parameters.append("}");
71-
LOG.info("Falling back to original OSS JSON Wire Protocol.");
71+
LOG.fine("Falling back to original OSS JSON Wire Protocol.");
7272
result = createSession(client, parameters);
7373
}
7474

@@ -77,7 +77,7 @@ public Result createSession(HttpClient client, Command command)
7777
parameters = new StringBuilder("{");
7878
amendW3CParameters(parameters, des, req);
7979
parameters.append("}");
80-
LOG.info("Falling back to straight W3C remote end connection");
80+
LOG.fine("Falling back to straight W3C remote end connection");
8181
result = createSession(client, parameters);
8282
}
8383

0 commit comments

Comments
 (0)