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

spring-jcl routes logging inefficiently against SLF4J with log4j-to-slf4j setup [SPR-17586] #22118

Closed
spring-projects-issues opened this issue Dec 10, 2018 · 1 comment
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Dec 10, 2018

Andy Wilkinson opened SPR-17586 and commented

If org.apache.logging.log4j.spi.ExtendedLogger (part of log4j-api) is on the classpath, spring-jcl will produce a org.apache.commons.logging.Log that logs by delegating to the Log4j2 API. In a setup where Log4j 2's implementation is not on the classpath and its log4j-to-slf4j module is being used to route logging performed via the Log4j 2 API into SLF4J, this isn't as efficient as it could be. It leaves logging being routed as follows:

Commons Logging -> Log4j2 -> SLF4J -> Logging back end

If a check was made for a type from log4j-core before choosing to route into Log4j2, this could be more efficient in log4j-core's absence:

Commons Logging -> SLF4J -> Logging back end


Affects: 5.0.11, 5.1.3

Issue Links:

Referenced from: commits 4b45030

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

If Log4j is present as well as org.apache.logging.slf4j.SLF4JProvider (and the SLF4J SPI), we're explicitly choosing the SLF4J facade now. This should cover the outlined case, hopefully.

As a side note, in case of the SLF4J SPI not being visible to us, we still prefer Log4j over the plain SLF4J API since the latter does not have location awareness support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants