Skip to content

Commit 7d0646a

Browse files
authored
[dotnet] Change default internal log level to Warn (#16126)
1 parent 2a74c64 commit 7d0646a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public LogContextManager()
3131
{
3232
var defaulLogHandler = new TextWriterHandler(Console.Error);
3333

34-
GlobalContext = new LogContext(LogEventLevel.Info, null, null, [defaulLogHandler]);
34+
GlobalContext = new LogContext(LogEventLevel.Warn, null, null, [defaulLogHandler]);
3535
}
3636

3737
public ILogContext GlobalContext { get; }

0 commit comments

Comments
 (0)