-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[dotnet] Annotate nullable reference types in internal logging #14819
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @RenderMichael for contribution!
/automerge please |
User description
…al.Logging`
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Annotate nullable reference types in
OpenQA.Selenium.Internal.Logging
Motivation and Context
Contributes to #14640
Types of changes
Checklist
PR Type
enhancement, bug_fix
Description
OpenQA.Selenium.Internal.Logging
namespace to improve code safety and clarity.LogHandlerList
andLogger
to prevent further inheritance, ensuring better encapsulation.Changes walkthrough 📝
13 files
ConsoleLogHandler.cs
Enable nullable reference types in ConsoleLogHandler
dotnet/src/webdriver/Internal/Logging/ConsoleLogHandler.cs
FileLogHandler.cs
Enhance nullability and exception handling in FileLogHandler
dotnet/src/webdriver/Internal/Logging/FileLogHandler.cs
ILogContext.cs
Enable nullable reference types in ILogContext
dotnet/src/webdriver/Internal/Logging/ILogContext.cs
ILogHandler.cs
Enable nullable reference types in ILogHandler
dotnet/src/webdriver/Internal/Logging/ILogHandler.cs
ILogHandlerList.cs
Enable nullable reference types in ILogHandlerList
dotnet/src/webdriver/Internal/Logging/ILogHandlerList.cs
ILogger.cs
Enable nullable reference types in ILogger
dotnet/src/webdriver/Internal/Logging/ILogger.cs
Log.cs
Enable nullable reference types and refactor properties in Log
dotnet/src/webdriver/Internal/Logging/Log.cs
LogContext.cs
Enhance nullability handling in LogContext
dotnet/src/webdriver/Internal/Logging/LogContext.cs
LogContextManager.cs
Enable nullable reference types and refactor properties in
LogContextManager
dotnet/src/webdriver/Internal/Logging/LogContextManager.cs
LogEvent.cs
Enhance nullability and exception handling in LogEvent
dotnet/src/webdriver/Internal/Logging/LogEvent.cs
LogEventLevel.cs
Enable nullable reference types in LogEventLevel
dotnet/src/webdriver/Internal/Logging/LogEventLevel.cs
LogHandlerList.cs
Enable nullable reference types and seal LogHandlerList
dotnet/src/webdriver/Internal/Logging/LogHandlerList.cs
Logger.cs
Enable nullable reference types and seal Logger
dotnet/src/webdriver/Internal/Logging/Logger.cs