|
3 months ago | |
---|---|---|
src | 3 months ago | |
.gitignore | 3 months ago | |
README.md | 3 months ago | |
build.gradle.kts | 3 months ago | |
gradlew | 3 months ago | |
gradlew.bat | 3 months ago | |
settings.gradle.kts | 3 months ago |
Thread Safe fast access logger. When using most log frameworks it always bothered me that you had to initialize multiple loggers and even pass them down everywhere.
This is an attempt to reduce the boiler plate code using one static abstract class, that can be initialized with any logger that implements a predefined interface.
public static void main(String[] args){
// initialize a Logger
FileLogger fl = new FileLogger("/path/to/logs");
LogPoint.initialize(fl);
LogPoint.log(LogLevel.Trace, "your message");
LogPoint.log(new Exception("an exception has occured"));
}
After initialization logs can be send anywhere using the static method.
The Logger is also written in a way to be compatible, meaning you don’t have to initialize it. If you log messages to it, without initializing it, it will simply print them to System.out.