From 684d5659ffca49c04bf8ad28ae92492e3c2efcef Mon Sep 17 00:00:00 2001 From: Nikolay Borisenko Date: Tue, 28 Nov 2023 22:10:08 +0300 Subject: [PATCH] Info minimum log level by default --- dotnet/src/webdriver/Internal/Logging/LogContextManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/webdriver/Internal/Logging/LogContextManager.cs b/dotnet/src/webdriver/Internal/Logging/LogContextManager.cs index 3e7afbb26550b..c045da37e080c 100644 --- a/dotnet/src/webdriver/Internal/Logging/LogContextManager.cs +++ b/dotnet/src/webdriver/Internal/Logging/LogContextManager.cs @@ -4,7 +4,7 @@ namespace OpenQA.Selenium.Internal.Logging { internal class LogContextManager { - private readonly ILogContext _globalLogContext = new LogContext(LogEventLevel.None, null, null, null); + private readonly ILogContext _globalLogContext = new LogContext(LogEventLevel.Info, null, null, null); private readonly AsyncLocal _currentAmbientLogContext = new AsyncLocal();