You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Christopher Tubbs (JIRA)" <ji...@apache.org> on 2013/04/05 00:06:15 UTC

[jira] [Created] (ACCUMULO-1242) Consistent logging

Christopher Tubbs created ACCUMULO-1242:
-------------------------------------------

             Summary: Consistent logging
                 Key: ACCUMULO-1242
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-1242
             Project: Accumulo
          Issue Type: Bug
          Components: dist
            Reporter: Christopher Tubbs
            Assignee: John Vines
             Fix For: 1.6.0


Logging dependencies are very inconsistent. It seems we have absolute dependencies on log4j, yet use slf4j sometimes, and log4j other times. In some of our tests we have slf4j-nop as a test dependency.

It seems we could consolidate a lot of this if we simply did:
# slf4j-api : compile
# slf4j-log4j12 : runtime
# slf4j-nop : test
# log4j : runtime

We could do this in the parent POM and get rid of all the different dependencies throughout the code.

I don't know that we could ever use anything other than slf4j-log4j12 as the implementation (unless our dependencies broke away from using log4j directly also), but at least we'd clean up all the logging dependencies in our code/build, and would be ready to switch to something better if something came along. Further, if somebody wanted to reuse our code, and weren't tied to log4j, because they didn't need our transitive dependencies that locked in log4j, they could easily depend on their own slf4j implementation jar, and all the logging in our code would still work correctly for them without needing to use something like log4j-over-slf4j.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira