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 1baf5ae commit c876dceCopy full SHA for c876dce
java/src/org/openqa/selenium/grid/log/LoggingOptions.java
@@ -77,8 +77,14 @@ public void setLoggingLevel() {
77
level = Level.parse(configLevel.toUpperCase(Locale.ROOT));
78
} catch (IllegalArgumentException e) {
79
// Logger is not configured yet
80
- new ConfigException("Unable to determine log level from " + configLevel +
81
- ". Using default " + DEFAULT_LOG_LEVEL).printStackTrace();
+ new ConfigException(
+ "Unable to determine log level from "
82
+ + configLevel
83
+ + ". Using default "
84
+ + DEFAULT_LOG_LEVEL
85
+ + ". Available log levels can be found at"
86
+ + " https://docs.oracle.com/en/java/javase/11/docs/api/java.logging/java/util/logging/Level.html")
87
+ .printStackTrace();
88
}
89
90
0 commit comments