This commit is contained in:
Lucio Lelii 2008-12-04 02:33:29 +00:00
parent 5e6cbd9604
commit 10c71d0d41
1 changed files with 5 additions and 3 deletions

View File

@ -310,7 +310,8 @@ public class XMLUtil {
toReturn.append(temp);
}
} catch (SQLException e) {
//logger.debug("VDLModelService: DB error preparing XML for Functionality");
logger.error("VDLModelService: DB error preparing XML for Functionality");
e.printStackTrace();
}
try {
@ -339,11 +340,12 @@ public class XMLUtil {
toReturn.append(temp);
}
} catch (SQLException e) {
//logger.error("VDLModelService: DB error retreiving CS");
logger.error("VDLModelService: DB error retreiving CS");
e.printStackTrace();
}
toReturn.append("</Resultset>");
//logger.debug(toReturn);
System.out.println(toReturn);
return toReturn.toString();
}