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 cc5bc4b commit ea1cd63Copy full SHA for ea1cd63
dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
@@ -106,7 +106,7 @@ protected override DriverOptions GetDefaultDriverOptions()
106
/// <summary>
107
/// Disable truncation of long log lines in GeckoDriver.
108
/// </summary>
109
- public bool LogTruncate { get; set; }
+ public bool LogNoTruncate { get; set; }
110
111
112
/// Directory in which GeckoDriver creates profiles.
@@ -199,7 +199,7 @@ protected override string CommandLineArguments
199
argsBuilder.Append(" --jsdebugger");
200
}
201
202
- if (this.LogTruncate)
+ if (this.LogNoTruncate)
203
{
204
argsBuilder.Append(" --log-no-truncate");
205
0 commit comments