Author: crossley Date: Wed Jan 19 22:49:57 2005 New Revision: 125727 URL: http://svn.apache.org/viewcvs?view=rev&rev=125727 Log: Add the start time to the logfile output. Helps to show via the webapp interface, whether this is an old logfile.
Modified: forrest/trunk/tools/forrestbot/core/build.xml Modified: forrest/trunk/tools/forrestbot/core/build.xml Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/forrestbot/core/build.xml?view=diff&rev=125727&p1=forrest/trunk/tools/forrestbot/core/build.xml&r1=125726&p2=forrest/trunk/tools/forrestbot/core/build.xml&r2=125727 ============================================================================== --- forrest/trunk/tools/forrestbot/core/build.xml (original) +++ forrest/trunk/tools/forrestbot/core/build.xml Wed Jan 19 22:49:57 2005 @@ -42,8 +42,11 @@ <trycatch property="errmsg" reference="exception"> <try> <record name="${build.logfile}" action="start"/> + <tstamp> + <format property="time.start" pattern="yyyy-MM-dd hh:mm:ss"/> + </tstamp> <echo> - ....... Forrest render START + ....... Forrest render START ${time.start} ... Rendering docs in ${build.work-dir} </echo> <antcall target="site" inheritAll="false">
