dion 2003/01/16 15:25:22
Modified: jelly/src/test/org/apache/commons/jelly/benchmark
benchmark.jelly
Log:
remove log tag usage
Revision Changes Path
1.3 +3 -3
jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/benchmark/benchmark.jelly
Index: benchmark.jelly
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/jelly/src/test/org/apache/commons/jelly/benchmark/benchmark.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- benchmark.jelly 11 Jan 2003 22:25:02 -0000 1.2
+++ benchmark.jelly 16 Jan 2003 23:25:22 -0000 1.3
@@ -2,15 +2,15 @@
<!-- revaluates the same script many times to test performance -->
-<j:jelly xmlns:j="jelly:core" xmlns:log="jelly:log">
+<j:jelly xmlns:j="jelly:core">
<j:useBean var="start" class="java.util.Date" />
- <log:info>Started at: ${start}</log:info>
+ Started at: ${start}
<j:forEach begin="1" end="1000">
<j:include uri="sample.jelly"/>
</j:forEach>
<j:useBean var="end" class="java.util.Date" />
- <log:info>Finished at: ${end}</log:info>
+ Finished at: ${end}
</j:jelly>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>