diff --git a/manual/listeners.html b/manual/listeners.html index 2f5e5750b..4f04724f1 100644 --- a/manual/listeners.html +++ b/manual/listeners.html @@ -115,6 +115,11 @@ listeners and loggers.
org.apache.tools.ant.listener.SimpleBigProjectLogger
org.apache.tools.ant.listener.ProfileLogger
ant -logger org.apache.tools.ant.listener.BigProjectLogger
+Like BigProjectLogger
, project-qualified target names are printed,
+useful for big builds with subprojects.
+Otherwise it is as quiet as NoBannerLogger
:
+Buildfile: /sources/myapp/build.xml + +myapp-lib.compile: +Created dir: /sources/myapp/lib/build/classes +Compiling 1 source file to /sources/myapp/lib/build/classes + +myapp-lib.jar: +Building jar: /sources/myapp/lib/build/lib.jar + +myapp.compile: +Created dir: /sources/myapp/build/classes +Compiling 2 source files to /sources/myapp/build/classes +myapp.jar: +Building jar: /sources/myapp/build/myapp.jar + +BUILD SUCCESSFUL +Total time: 1 second ++
since Ant 1.8.1
+To use this listener, use the command:
+
+ant -logger org.apache.tools.ant.listener.SimpleBigProjectLogger
+
This logger stores the time needed for executing a task, target and the whole build and prints