Class TimestampedLogger
java.lang.Object
org.apache.tools.ant.DefaultLogger
org.apache.tools.ant.listener.TimestampedLogger
- All Implemented Interfaces:
EventListener, BuildListener, BuildLogger
Like a normal logger, except with timed outputs
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringwhat appears between the old message and the newFields 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
Methods inherited from class DefaultLogger
buildFinished, buildStarted, extractProjectName, formatTime, getMessageOutputLevel, getTimestamp, log, messageLogged, printMessage, setEmacsMode, setErrorPrintStream, setMessageOutputLevel, setOutputPrintStream, targetFinished, targetStarted, taskFinished, taskStartedModifier 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.protected StringextractProjectName(BuildEvent event) Get the project name or nullprotected static StringformatTime(long millis) Convenience method to format a specified length of time.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.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.
-
Field Details
-
SPACER
-
-
Constructor Details
-
TimestampedLogger
public TimestampedLogger()
-
-
Method Details
-
getBuildFailedMessage
This is an override point: the message that indicates whether a build failed. Subclasses can change/enhance the message.- Overrides:
getBuildFailedMessagein classDefaultLogger- Returns:
- The classic "BUILD FAILED" plus a timestamp
-
getBuildSuccessfulMessage
This is an override point: the message that indicates that a build succeeded. Subclasses can change/enhance the message.- Overrides:
getBuildSuccessfulMessagein classDefaultLogger- Returns:
- The classic "BUILD SUCCESSFUL" plus a timestamp
-