Skip to content
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

[java] Ensure Selenium logging options are respected if java logging … #15197

Merged

Conversation

pujagani
Copy link
Contributor

@pujagani pujagani commented Jan 31, 2025

User description

…properties are not set

Fixes #14160 and #15176

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.

Motivation and Context

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist

  • I have read the contributing document.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

PR Type

Bug fix


Description

  • Ensure Selenium logging options are respected when Java logging properties are unset.

  • Prioritize Java logging configuration if explicitly set.

  • Maintain existing loggers if Java logging configuration is provided.


Changes walkthrough 📝

Relevant files
Bug fix
LoggingOptions.java
Respect Java logging properties in Selenium logging configuration

java/src/org/openqa/selenium/grid/log/LoggingOptions.java

  • Added checks for Java logging configuration class and file properties.
  • Ensured Selenium logging is used only if Java logging properties are
    unset.
  • Updated logic to prioritize Java logging configuration over Selenium
    defaults.
  • +8/-2     

    Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • Copy link
    Contributor

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Edge Case

    The new logging configuration check may not handle all edge cases where both Java logging properties and Selenium logging are configured. Consider validating the priority logic.

    String configClass = System.getProperty("java.util.logging.config.class");
    String configFile = System.getProperty("java.util.logging.config.file");
    
    // Check if the java logging config class or file is set. If so, give that priority.
    // Else default to the Selenium logging and respect the Selenium logging options.
    if (configClass != null || configFile != null) {
      return;
    }

    Copy link
    Contributor

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Score
    Possible issue
    Add null and empty string validation

    Add null check and trim for config properties to prevent potential
    NullPointerException and handle whitespace-only strings

    java/src/org/openqa/selenium/grid/log/LoggingOptions.java [101-106]

     String configClass = System.getProperty("java.util.logging.config.class");
     String configFile = System.getProperty("java.util.logging.config.file");
    -if (configClass != null || configFile != null) {
    +if ((configClass != null && configClass.trim().length() > 0) || 
    +    (configFile != null && configFile.trim().length() > 0)) {
    • Apply this suggestion
    Suggestion importance[1-10]: 7

    Why: The suggestion improves robustness by handling edge cases where the config properties might be empty strings or contain only whitespace, preventing potential logical errors in the logging configuration selection.

    7

    @pujagani pujagani merged commit a5b92a0 into SeleniumHQ:trunk Jan 31, 2025
    32 of 33 checks passed
    sandeepsuryaprasad pushed a commit to sandeepsuryaprasad/selenium that referenced this pull request Mar 23, 2025
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    [🐛 Bug]: [GRID] logging.properties is ignored when trying to remove stack trace errors from Logs
    1 participant