Class Log4jListener

java.lang.Object
org.apache.tools.ant.listener.Log4jListener
All Implemented Interfaces:
EventListener, BuildListener

@Deprecated public class Log4jListener extends Object implements BuildListener
Deprecated.
Apache Log4j (1) is not developed any more. Last release is 1.2.17 from 26-May-2012 and contains vulnerability issues. Use the standard listener or your own custom listener instead.
Listener which sends events to Log4j logging system.
  • Field Details

  • Constructor Details

    • Log4jListener

      public Log4jListener()
      Deprecated.
      Construct the listener
  • Method Details

    • buildStarted

      public void buildStarted(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that a build has started. This event is fired before any targets have started.

      This event is fired before the project instance is fully configured. In particular no properties have been set and the project may not know its name or default target, yet.

      Specified by:
      buildStarted in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • buildFinished

      public void buildFinished(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that the last target has finished. This event will still be fired if an error occurred during the build.
      Specified by:
      buildFinished in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • targetStarted

      public void targetStarted(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that a target is starting.
      Specified by:
      targetStarted in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • targetFinished

      public void targetFinished(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that a target has finished. This event will still be fired if an error occurred during the build.
      Specified by:
      targetFinished in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • taskStarted

      public void taskStarted(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that a task is starting.
      Specified by:
      taskStarted in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • taskFinished

      public void taskFinished(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals that a task has finished. This event will still be fired if an error occurred during the build.
      Specified by:
      taskFinished in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also:
    • messageLogged

      public void messageLogged(BuildEvent event)
      Deprecated.
      Description copied from interface: BuildListener
      Signals a message logging event.
      Specified by:
      messageLogged in interface BuildListener
      Parameters:
      event - An event with any relevant extra information. Must not be null.
      See Also: