Skip to content

Commit

Permalink
Info minimum log level by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Nov 28, 2023
1 parent c4af631 commit 684d565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Internal/Logging/LogContextManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<ILogContext> _currentAmbientLogContext = new AsyncLocal<ILogContext>();

Expand Down

0 comments on commit 684d565

Please sign in to comment.