We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ee772 commit 95e79d7Copy full SHA for 95e79d7
1 file changed
java/src/org/openqa/selenium/grid/security/BasicAuthenticationFilter.java
@@ -17,6 +17,7 @@
17
18
package org.openqa.selenium.grid.security;
19
20
+import org.openqa.selenium.internal.Debug;
21
import org.openqa.selenium.internal.Require;
22
import org.openqa.selenium.remote.http.Filter;
23
import org.openqa.selenium.remote.http.HttpHandler;
@@ -43,7 +44,7 @@ public HttpHandler apply(HttpHandler next) {
43
44
Require.nonNull("Request", req);
45
46
if (!isAuthorized(req.getHeader("Authorization"))) {
- LOG.info("Unauthorized request to " + req);
47
+ LOG.log(Debug.getDebugLogLevel(), "Unauthorized request to " + req);
48
return new HttpResponse()
49
.setStatus(HttpURLConnection.HTTP_UNAUTHORIZED)
50
.addHeader("WWW-Authenticate", "Basic realm=\"selenium-server\"");
0 commit comments