I set up log4j in WebSphere just like anywhere else, I'd imagine. Create a
servlet with init method:
public void init()
{
String prefix = getServletContext().getRealPath("/");
String file = getInitParameter("log4j_conf");
if (file != null)
{
PropertyConfigurator.configure(prefix + file);
}
}
and then in the web.xml file make sure load-on-startup is set to 1 and the log4j_conf init param value is set to the path to the log4j_conf.properties file. No worries...