Lines Matching full:logger
20 import org.apache.qetest.Logger;
52 // Use logger.logMsg(...) instead of System.out.println(...) in execute()
53 logger.logMsg(Logger.STATUSMSG, "Reproducing Bugzilla1110"); in execute()
54 …logger.logMsg(Logger.STATUSMSG, "User reports: I expect the following program prints ' e1\n null\n… in execute()
55 logger.logMsg(Logger.STATUSMSG, "User reports: But it actually prints ' null\n e1\n'."); in execute()
68 logger.logMsg(Logger.STATUSMSG, "---- about to parse document"); in execute()
69 logger.logMsg(Logger.STATUSMSG, docStr); in execute()
70 logger.logMsg(Logger.STATUSMSG, "----"); in execute()
75 logger.logMsg(Logger.STATUSMSG, "about to eval '" + xpathStr + "'"); in execute()
78 logger.checkFail("XObject returned is NOT a nodeset, is:" + xobj.str()); in execute()
81 … logger.logMsg(Logger.STATUSMSG, "XObject returned Class is: " + iter.getClass().getName()); in execute()
82 logger.logMsg(Logger.STATUSMSG, "---- XObject returned value is"); in execute()
85 logger.logMsg(Logger.STATUSMSG, n == null ? " null" : " " + n.getNodeName()); in execute()
87 logger.logMsg(Logger.STATUSMSG, n == null ? " null" : " " + n.getNodeName()); in execute()
90 logger.logMsg(Logger.STATUSMSG, " " + n.getNodeName()); in execute()
93 logger.logMsg(Logger.WARNINGMSG, "NOTE: still need to validate expected error!"); in execute()
98 logger.logThrowable(Logger.ERRORMSG, t, "execute threw"); in execute()
99 logger.checkFail("execute threw: " + t.toString()); in execute()