}
private void doGetExecutionLog() throws PageException {
ExecutionLogFactory factory = config.getExecutionLogFactory();
Struct sct=new StructImpl();
sct.set(KeyConstants._enabled, Caster.toBoolean(config.getExecutionLogEnabled()));
Class clazz = factory.getClazz();
sct.set(KeyConstants._class, clazz!=null?clazz.getName():"");
sct.set(KeyConstants._arguments, factory.getArgumentsAsStruct());
pageContext.setVariable(getString("admin",action,"returnVariable"),sct);
}