Skip to content

Commit ea1cd63

Browse files
committed
Improving property name
1 parent cc5bc4b commit ea1cd63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriverService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected override DriverOptions GetDefaultDriverOptions()
106106
/// <summary>
107107
/// Disable truncation of long log lines in GeckoDriver.
108108
/// </summary>
109-
public bool LogTruncate { get; set; }
109+
public bool LogNoTruncate { get; set; }
110110

111111
/// <summary>
112112
/// Directory in which GeckoDriver creates profiles.
@@ -199,7 +199,7 @@ protected override string CommandLineArguments
199199
argsBuilder.Append(" --jsdebugger");
200200
}
201201

202-
if (this.LogTruncate)
202+
if (this.LogNoTruncate)
203203
{
204204
argsBuilder.Append(" --log-no-truncate");
205205
}

0 commit comments

Comments
 (0)