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

Fix Android-related issues in Log4j Core #3071

Merged
merged 2 commits into from
Oct 10, 2024
Merged

Fix Android-related issues in Log4j Core #3071

merged 2 commits into from
Oct 10, 2024

Commits on Oct 9, 2024

  1. Fix Android-related issues in Log4j Core

    This fixes three issues encountered in the [`log4j-samples-android`](https://github.com/apache/logging-log4j-samples/tree/main/log4j-samples-android) test project:
    
    1. Disables the `jvmrunargs` lookup on Android and fixes it on the other platforms. Previously, the lookup always returned `null`.
    2. Switches the default context selector to `BasicContextSelector` on Android. `StackLocator` is broken on Android: it cannot use our JDK 8 code (missing `sun.reflect` classes), but also it cannot use our JDK 11+ code (missing multi-release JAR support). This causes `ClassLoaderContextSelector` to use two different logger contexts for the same classloader.
    3. Fixes a `ParserConfigurationException` caused by the lack of XInclude capabilities in Android's XML parser. The fix to [LOG4J2-3531](https://issues.apache.org/jira/browse/LOG4J2-3531) didn't cover all the cases.
    
    Closes #3056.
    Part of #2832.
    ppkarwasz committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    62b84e6 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Add FAQ entry

    ppkarwasz committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    fbd4ea0 View commit details
    Browse the repository at this point in the history