using info level for messages
authorJaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:50:51 +0200
changeset 945a6b338a903
parent 8 82ff02d7f861
child 10 5611653dec2f
using info level for messages
samples/primitiveconstants/build.xml
     1.1 --- a/samples/primitiveconstants/build.xml	Sat Jun 14 09:50:51 2008 +0200
     1.2 +++ b/samples/primitiveconstants/build.xml	Sat Jun 14 09:50:51 2008 +0200
     1.3 @@ -18,11 +18,11 @@
     1.4      </target>
     1.5      
     1.6      <target name="run" depends="build">
     1.7 -        <echo message="Running the Implementation against Version 1.0 of the API. This should succeeds."/>
     1.8 +        <echo level="info" message="Running the Implementation against Version 1.0 of the API. This should succeeds."/>
     1.9          <antcall target="-run-one">
    1.10              <param name="version" value="api1.0"/>
    1.11          </antcall>
    1.12 -        <echo message="Running the Implementation against Version 2.0 of the API. This should fail."/>
    1.13 +        <echo level="info" message="Running the Implementation against Version 2.0 of the API. This should fail."/>
    1.14          <antcall target="-run-one">
    1.15              <param name="version" value="api2.0"/>
    1.16          </antcall>