LogSearchCriteria criteria = (LogSearchCriteria) session
.getAttribute(IConst.SESSION.SEARCH_CRITERIA_LOG);
int block = Integer.parseInt(lForm.getBlock());
dao.fillLogEntryList(criteria, records, block);
request.setAttribute(IConst.REQUEST.RECORDS_DATA, records);
ArrayIterator it = new ArrayIterator();
it.setArray(JGossipLog.PRIORITIES);
request.setAttribute("log_level", it);
} catch (SQLException sqle) {
getServlet().log("Connection.process", sqle);
throw new SystemException(sqle);
} catch (InstantiationException e) {