资 源 简 介
NEWS
esl4j version 2.0 released
esl4j artifacts are available in maven central repository
Overview
This project is a simple and lightweight Java logging facade library that can be used as a logging abstraction layer. Any Java application or existing library using esl4j can seamlessly integrate with the underlying logging framework with no-code-change. It is also very easy and simple to plug and use any logging framework in Java applications.
The core esl4j API doesn"t have a dependency on any thirdparty library, which makes it very lightweight.
Usage
Here is all that one needs to do in the code.
```
//Get a Logger instance
Logger logger = LogManager.getLogger(MyClass.class);
//Start logging
logger.info("Hello world");
```
Configuration
Here is the one-line configuration to use the JDK logging framework.
org.kamranzafar.esl4j.LogFact