e.printStackTrace();
}
// Logging
Iterator iActions = eval.getListOfActions().iterator();
while (iActions.hasNext()) {
SOSActions a = (SOSActions) iActions.next();
this.getLogger().debug1(".... checking action " + a.getName());
if (a.isActive(eval.getListOfActiveEvents())) {
this.getLogger().debug1(".... added action:" + a.getName());
this.getEventHandlerResultFileList().add(a.getCommands());
NodeList commands = (NodeList) XPathAPI.selectNodeList(a.getCommands(), "command | remove_event | add_event");
for (int i = 0; i < commands.getLength(); i++) {
Node n = commands.item(i);
if (n.getNodeName().equals("command") || n.getNodeName().equals("remove_event") || n.getNodeName().equals("add_event")) {
this.getLogger().debug1(".. " + n.getNodeName() + " was added");
NamedNodeMap attr = n.getAttributes();