zoukankan      html  css  js  c++  java
  • log4j vs slf4j vs logback vs commons-logging

    References

    [1] https://logback.qos.ch/

    [2] https://stackoverflow.com/questions/178215/log4j-vs-logback

    [3] https://howtodoinjava.com/log4j/slf4j-vs-log4j-which-one-is-better/

    [4] https://vectorbeta.wordpress.com/2014/08/26/the-java-logging-quagmire/

    SLF4J vs commons-logging

    Apache Commons Logging and SLF4J are facades over actual logging implementations. Each of them does include an internal, simplistic logging implementation (“SimpleLog” for Commons Logging, “Simple” for SLF4J) but you’re meant to use a real implementation in production.

    SLF4J was designed to do what commons-logging does but better

    Basically you should replace your selfmade wrapper with slf4j IF and only IF you are not happy with it for some reason. While Apache Commons Logging is not really providing a modern API, slf4j and the new Log4j 2 facade is providing that. Given that quite a bunch of apps use slf4j as a wrapper it might make sense to use that.

    log4j/logback vs slf4j

    Simple Logging Facade for Java (SLF4J) is an API designed to give generic access to many logging frameworks; log4j being one of them. Which one you use, is then decided at deployment time, not when you write your code. Best practice is to use slf4j to for your own log statements, and then choose the appropriate backend for it (including log4j and logback by configuring to use them as a logging backend).

    SLF4J does not replace log4j, they work together. It removes the dependency on log4j from your application and make it easy to replace it in future with more capable library.

    Logback natively implements the SLF4J API. This means that if you are using logback, you are actually using the SLF4J API. You could theoretically use the internals of the logback API directly for logging, but that is highly discouraged. All logback documentation and examples on loggers are written in terms of the SLF4J API. 

    log4j vs logback

    Logback is intended as a successor to the popular log4j project, picking up where log4j leaves off.

    In summary, Logback seems to be the best option.

  • 相关阅读:
    用elasticsearch分析中国大学省份分布
    【翻译】Kinect v1和Kinect v2的彻底比较
    翻译 Tri-Ace:在Shader里近似渲染公式
    翻译 基于物理渲染的美术资源设计流程
    翻译 次世代基于物理渲染的反射模型
    关于Depth Bounds Test (DBT)和在CE3的运用
    使用Xcode GPU Frame Caputre教程
    如何使用Xcode分析调试在真机运行的UE4 IOS版游戏
    个人翻译的cedec2010基于物理的光照
    使用Nsight查找CE3的渲染bug
  • 原文地址:https://www.cnblogs.com/codingforum/p/7846145.html
Copyright © 2011-2022 走看看