Skip to content

Commit 79c9139

Browse files
committed
Following convention
1 parent 0882a4b commit 79c9139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Chromium/ChromiumDriverService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ protected override string CommandLineArguments
163163
{
164164
if (Enum.IsDefined(typeof(ChromiumDriverLogLevel), this.LogLevel))
165165
{
166-
argsBuilder.Append($" --log-level={this.LogLevel.ToString().ToUpperInvariant()}");
166+
argsBuilder.Append(string.Format(CultureInfo.InvariantCulture, " --log-level={0}", this.LogLevel.ToString().ToUpperInvariant()));
167167
}
168168
}
169169

0 commit comments

Comments
 (0)