Package org.apache.tools.ant.listener
Class Log4jListener
java.lang.Object
org.apache.tools.ant.listener.Log4jListener
- All Implemented Interfaces:
EventListener
,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 Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
buildFinished
(BuildEvent event) Deprecated.Signals that the last target has finished.void
buildStarted
(BuildEvent event) Deprecated.Signals that a build has started.void
messageLogged
(BuildEvent event) Deprecated.Signals a message logging event.void
targetFinished
(BuildEvent event) Deprecated.Signals that a target has finished.void
targetStarted
(BuildEvent event) Deprecated.Signals that a target is starting.void
taskFinished
(BuildEvent event) Deprecated.Signals that a task has finished.void
taskStarted
(BuildEvent event) Deprecated.Signals that a task is starting.
-
Field Details
-
LOG_ANT
Deprecated.use MagicNames.ANT_CORE_PACKAGElog category we log into- See Also:
-
-
Constructor Details
-
Log4jListener
public Log4jListener()Deprecated.Construct the listener
-
-
Method Details
-
buildStarted
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 interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
buildFinished
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 interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
targetStarted
Deprecated.Description copied from interface:BuildListener
Signals that a target is starting.- Specified by:
targetStarted
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
targetFinished
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 interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
taskStarted
Deprecated.Description copied from interface:BuildListener
Signals that a task is starting.- Specified by:
taskStarted
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
taskFinished
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 interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-
messageLogged
Deprecated.Description copied from interface:BuildListener
Signals a message logging event.- Specified by:
messageLogged
in interfaceBuildListener
- Parameters:
event
- An event with any relevant extra information. Must not benull
.- See Also:
-