vote up 1 vote down star

Is there an easy way to have the Ant logger (default or other) add a timestamp to each message?

The only way I can think of is to use the Log4jListener and have its settings include the timestamp. Or write a custom logger that subclasses DefaultLogger and writes the timestamp. If there's a better or easier way (preferably without requiring that users install a new jar file into their Ant lib directory),

I'd be interested in hearing about it.

flag

2 Answers

vote up 0 vote down check

You can define an Ant macrodef to set the current timestamp, then call the macrodef each time you need to reference it throughout your build.xml

The following macrodef will set the timestamp to a property (you can add an attribute to the macrodef if you want to customise the property it sets):

<macrodef  name="set.timestamp">
  <sequential>
    <tstamp>
      <format property="current.time" pattern="MM/dd/yyyy hh:mm"/>
    </tstamp>
  </sequential>
</macrodef>

Then to use it, just access the property set by the macrodef as you need:

<target name="doFoo" depends="dir.check" if="dir.exists">
  <set.timestamp/>
  <!--in this example, just echo the timestamp -->
  <echo message="${current.time}"/>
</target>

For more information on ant macrodefs, check out the documentation.

link|flag
vote up 0 vote down

Writing a custom logger is not hard.

link|flag
could you please give me some hits? I was trying to make a custom logger in Ant using redirector tag. – Tiger Aug 9 at 19:24
Actually write one, as in implementing the BuildLogger interface. Extending DefaultLogger would be a good starting place. – carej Aug 10 at 5:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.