views:

122

answers:

4

I am planning to create a logging framework for Java/J2EE from scratch.In this regard I want some white papers on common industry logging standards for reference.Any pointers to the same are appreciated.

A: 

The best resource would be the current Java logging champion- AFAIK that's log4j.

Dave Swersky
+1  A: 

Google 'log4j sucks' or something similar, and try to find out everything you can about what's wrong with the current frameworks. Since they obviously don't meet your needs.

John MacIntyre
A: 

Why do you need another logging framework?

The most commonly used log4j does its job very good and SLF4J is even better. What do you need that is not in those frameworks?

Matthieu BROUILLARD