- From: Jonathan Barouh via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 01 Sep 2008 08:36:24 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn In directory hutz:/tmp/cvs-serv32629/org/w3c/unicorn Modified Files: UnicornCall.java Log Message: Logs added. Index: UnicornCall.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/UnicornCall.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- UnicornCall.java 29 Aug 2008 12:18:49 -0000 1.13 +++ UnicornCall.java 1 Sep 2008 08:36:21 -0000 1.14 @@ -751,6 +751,7 @@ public boolean checkCond(TLTCond cond) throws Exception { UnicornCall.logger.trace("checkCond : "); UnicornCall.logger.trace(cond); + UnicornCall.logger.trace("condType : " + cond.getType()); boolean passed = false; Response res = mapOfResponse.get(cond.getObserver()); @@ -769,7 +770,9 @@ DocumentBuilderFactory xmlFact = DocumentBuilderFactory.newInstance(); - + + // namespace awareness is escaped since we don't use it + // for the moment xmlFact.setNamespaceAware(false); DocumentBuilder builder = xmlFact.newDocumentBuilder(); @@ -793,7 +796,7 @@ } cond.setResult(passed); - UnicornCall.logger.trace("cond : " + passed); + UnicornCall.logger.trace("cond result : " + passed); return passed; }
Received on Monday, 1 September 2008 08:36:57 UTC