Skip to content

Commit 674f29c

Browse files
committed
Adjust local variable name
1 parent 811acf6 commit 674f29c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/Internal/Logging/LogContextManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ internal class LogContextManager
3131

3232
public LogContextManager()
3333
{
34-
var defaulConsoleLogHandler = new TextWriterHandler(Console.Error);
34+
var defaulLogHandler = new TextWriterHandler(Console.Error);
3535

36-
GlobalContext = new LogContext(LogEventLevel.Info, null, null, [defaulConsoleLogHandler]);
36+
GlobalContext = new LogContext(LogEventLevel.Info, null, null, [defaulLogHandler]);
3737
}
3838

3939
public ILogContext GlobalContext { get; }

0 commit comments

Comments
 (0)