&& !line.startsWith("\t")) {
makeNewCurrentElement(line.substring(0, line.lastIndexOf(':')));
return; // Do not log the goal itself
}
Element msg = new Element("message");
msg.addContent(new CDATA(line));
// Initially call it "info" level.
// If "the going gets tough" we'll switch this to "error"
msg.setAttribute("priority", "info");
if (currentElement == null) {
buildLogElement.addContent(msg);