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 1faee93 commit f5989f6Copy full SHA for f5989f6
dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
@@ -213,10 +213,9 @@ protected override void OnDriverProcessStarting(DriverProcessStartingEventArgs e
213
// Initialize the log writer
214
logWriter = new StreamWriter(this.LogPath, append: true) { AutoFlush = true };
215
216
- // LogToConsole and LogPath are mutually exclusive. LogPath takes precedence.
+ // LogToConsole and LogPath are mutually exclusive, therefore we redirect log output.
217
if (this.LogToConsole)
218
{
219
- this.LogToConsole = false;
220
eventArgs.DriverServiceProcessStartInfo.RedirectStandardOutput = true;
221
eventArgs.DriverServiceProcessStartInfo.RedirectStandardError = true;
222
}
0 commit comments