//load the configuration for this application's loggers using the servletLog.properties file
// PropertyConfigurator.configure(getServletContext().getRealPath("/") + "WEB-INF/classes/servletLog.properties");
//create the logger for this servlet class
//it will use the configuration for the logger com.jspservletcookbook.LoggerServlet
//or inherit from the logger com.jspservletcookbook ifn one exists, and so on
log = Logger.getLogger(LoggerServlet2.class);