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 b571cd7 commit 669a493Copy full SHA for 669a493
1 file changed
java/src/org/openqa/selenium/firefox/GeckoDriverService.java
@@ -261,7 +261,7 @@ protected void loadSystemProperties() {
261
}
262
263
if (logTruncate == null) {
264
- logTruncate = Boolean.getBoolean(GECKO_DRIVER_LOG_LEVEL_PROPERTY);
+ logTruncate = !Boolean.getBoolean(GECKO_DRIVER_LOG_NO_TRUNCATE);
265
266
if (profileRoot == null) {
267
String profileRootFromProperty = System.getProperty(GECKO_DRIVER_PROFILE_ROOT);
@@ -288,7 +288,7 @@ protected List<String> createArgs() {
288
args.add("--log");
289
args.add(logLevel.toString());
290
291
- if (logTruncate != null && logTruncate.equals(Boolean.TRUE)) {
+ if (logTruncate != null && logTruncate.equals(Boolean.FALSE)) {
292
args.add("--log-no-truncate");
293
294
if (profileRoot != null) {
0 commit comments