For a specific purpose you cannot. For all execution, you can specify a silent argument:
bin/phing -silent db.wanup.deploy
Added:
If you want to view several of your echoes, you must execute it in silent mode:
bin/phing -quiet
And set the echo level of the echo to warning or. , . "", "", "", "", "" ( )
<echo level="warning"> món! </echo>
:
<?xml version="1.0" ?>
<target name="list">
<echo> Hola </echo>
<phingcall target="mon" />
</target>
<target name="mon" >
<echo level="warning"> món! </echo>
</target>
phing , :
Buildfile: /private/tmp/build.xml
silent execution > list:
[echo] Hola
silent execution > mon:
[echo] món!
BUILD FINISHED
Total time: 0.2197 seconds
phing -quiet (-q -quiet), :
[echo] món!
BUILD FINISHED
Total time: 0.1822 seconds