org.apache.tools.ant.listener

Class ProfileLogger

public class ProfileLogger extends DefaultLogger

This is a special logger that is designed to profile builds.

Since: Ant1.8

Method Summary
voidtargetFinished(BuildEvent event)
Logs a message to say that the target has finished.
voidtargetStarted(BuildEvent event)
Logs a message to say that the target has started.
voidtaskFinished(BuildEvent event)
Logs a message to say that the task has finished.
voidtaskStarted(BuildEvent event)
Logs a message to say that the task has started.

Method Detail

targetFinished

public void targetFinished(BuildEvent event)
Logs a message to say that the target has finished.

Parameters: event An event with any relevant extra information. Must not be null.

targetStarted

public void targetStarted(BuildEvent event)
Logs a message to say that the target has started.

Parameters: event An event with any relevant extra information. Must not be null.

taskFinished

public void taskFinished(BuildEvent event)
Logs a message to say that the task has finished.

Parameters: event An event with any relevant extra information. Must not be null.

taskStarted

public void taskStarted(BuildEvent event)
Logs a message to say that the task has started.

Parameters: event An event with any relevant extra information. Must not be null.