Class SilentLogger
java.lang.Object
org.apache.tools.ant.DefaultLogger
org.apache.tools.ant.listener.SilentLogger
- All Implemented Interfaces:
EventListener, BuildListener, BuildLogger
A logger which logs nothing but build failure and what task might output
- Since:
- 1.9.0
-
Field Summary
Fields inherited from class DefaultLogger
emacsMode, err, LEFT_COLUMN_SIZE, lSep, msgOutputLevel, outModifier and TypeFieldDescriptionprotected booleanWhether or not to use emacs-style outputprotected PrintStreamPrintStream to write error messages tostatic final intSize of left-hand column for right-justified task name.protected static final StringDeprecated.protected intLowest level of message to write outprotected PrintStreamPrintStream to write non-error messages to -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbuildFinished(BuildEvent event) Prints whether the build succeeded or failed, any errors the occurred during the build, and how long the build took.voidbuildStarted(BuildEvent event) Responds to a build being started by just remembering the current time.voidtargetFinished(BuildEvent event) No-op implementation.voidtargetStarted(BuildEvent event) Logs a message to say that the target has started if this logger allows information-level messages.voidtaskFinished(BuildEvent event) No-op implementation.voidtaskStarted(BuildEvent event) No-op implementation.Methods inherited from class DefaultLogger
extractProjectName, formatTime, getBuildFailedMessage, getBuildSuccessfulMessage, getMessageOutputLevel, getTimestamp, log, messageLogged, printMessage, setEmacsMode, setErrorPrintStream, setMessageOutputLevel, setOutputPrintStreamModifier and TypeMethodDescriptionprotected StringextractProjectName(BuildEvent event) Get the project name or nullprotected static StringformatTime(long millis) Convenience method to format a specified length of time.protected StringThis is an override point: the message that indicates whether a build failed.protected StringThis is an override point: the message that indicates that a build succeeded.intprotected StringGet the current time.protected voidEmpty implementation which allows subclasses to receive the same output that is generated here.voidmessageLogged(BuildEvent event) Logs a message, if the priority is suitable.protected voidprintMessage(String message, PrintStream stream, int priority) Prints a message to a PrintStream.voidsetEmacsMode(boolean emacsMode) Sets this logger to produce emacs (and other editor) friendly output.voidSets the output stream to which this logger is to send error messages.voidsetMessageOutputLevel(int level) Sets the highest level of message this logger should respond to.voidsetOutputPrintStream(PrintStream output) Sets the output stream to which this logger is to send its output.
-
Constructor Details
-
SilentLogger
public SilentLogger()
-
-
Method Details
-
buildStarted
Description copied from class:DefaultLoggerResponds to a build being started by just remembering the current time.- Specified by:
buildStartedin interfaceBuildListener- Overrides:
buildStartedin classDefaultLogger- Parameters:
event- Ignored.
-
buildFinished
Description copied from class:DefaultLoggerPrints whether the build succeeded or failed, any errors the occurred during the build, and how long the build took.- Specified by:
buildFinishedin interfaceBuildListener- Overrides:
buildFinishedin classDefaultLogger- Parameters:
event- An event with any relevant extra information. Must not benull.- See Also:
-
targetStarted
Description copied from class:DefaultLoggerLogs a message to say that the target has started if this logger allows information-level messages.- Specified by:
targetStartedin interfaceBuildListener- Overrides:
targetStartedin classDefaultLogger- Parameters:
event- An event with any relevant extra information. Must not benull.- See Also:
-
targetFinished
Description copied from class:DefaultLoggerNo-op implementation.- Specified by:
targetFinishedin interfaceBuildListener- Overrides:
targetFinishedin classDefaultLogger- Parameters:
event- Ignored.- See Also:
-
taskStarted
Description copied from class:DefaultLoggerNo-op implementation.- Specified by:
taskStartedin interfaceBuildListener- Overrides:
taskStartedin classDefaultLogger- Parameters:
event- Ignored.- See Also:
-
taskFinished
Description copied from class:DefaultLoggerNo-op implementation.- Specified by:
taskFinishedin interfaceBuildListener- Overrides:
taskFinishedin classDefaultLogger- Parameters:
event- Ignored.- See Also:
-