* @return the last ten log events
* @throws ActionException on problems with http, cookies and io
* @throws ProcessException
*/
public Iterator<LogItem> getLogEvents(int limit, String type) throws ActionException, ProcessException {
LogEvents c = new LogEvents(this, limit, type);
return c;
}