LOG4J_CONFIG_FILE_DEFAULT);
log4jFile = getRealPath(log4jFile);
Properties p = new Properties();
p.load(new FileInputStream(log4jFile));
p.setProperty(APPLICATION_ROOT_KEY, context.getApplicationRoot());
Hierarchy h = new Hierarchy(new RootCategory(Level.INFO));
new PropertyConfigurator().doConfigure(p,h);
IsolatedLog4JLogger.setHierarchy(h);
log.info("Configured log4j from " + log4jFile);
log.info("Starting Jetspeed Engine ("+getClass().getName()+") at "+format.format(startTime));