NodeList nodeList = null;
NamedNodeMap nodeMapSettings = null;
// get settings for log_level
nodeQuery = "//settings/log_level";
Node nodeSettings = xpath.selectSingleNode(nodeQuery);
if (nodeSettings != null) {
nodeMapSettings = nodeSettings.getAttributes();
if (nodeMapSettings != null && nodeMapSettings.getNamedItem("value") != null) {
this.getLogger().debug1("Log Level is: " + nodeMapSettings.getNamedItem("value").getNodeValue() + "(" + this.logLevel2Int(nodeMapSettings.getNamedItem("value").getNodeValue()) + ")");
this.getLogger().setLogLevel(this.logLevel2Int(nodeMapSettings.getNamedItem("value").getNodeValue()));