Logger « Log « JSP-Servlet Q&A





1. Java Logger with Servlets    stackoverflow.com

I am using a wrapper class A which initializes the java.util.logger

static class A {

    public static Logger logger;

    public static void init(){

    ...

2. Seam Logger inside a Servlet?    stackoverflow.com

Is there a way to use a Seam Logger inside of a standard Java Servlet? I have one servlet that I use to serve up content, while the rest of ...

3. can i use log4j in a jsp file? How do I initialise the logger in jsp?    stackoverflow.com

I want to use the log4j logging framework in a jsp file. The typical initialisation of log4j in a java file is: Logger log = Logger.getLogger(loggedin.class); How do I initialise the logger in a ...