}
private void configureJULIfNeeded() {
if (containerProperties != null && "true".equalsIgnoreCase(containerProperties.get("openejb.jul.forceReload"))) {
System.getProperties().putAll(containerProperties);
new JuliLogStreamFactory(); // easiest way to support forceReload, note this doesn't do that much ATM
final String simpleFormat = containerProperties.get("java.util.logging.SimpleFormatter.format");
if (simpleFormat != null) {
try {
final Field field = SimpleFormatter.class.getDeclaredField("format");
field.setAccessible(true);